100% Free MS Access .NET Code Generator (tired of hand cranking business objects/data objects) ?

  • Thread starter Thread starter MyGeneration
  • Start date Start date
M

MyGeneration

MyGeneration is 100% free. Are you tired of hand coding business objects,
and stored
procedures (yes, Access stored procedures). Well, spend your time wisely
doing other things and let us help you eliminate the grunt work from your
project, see http://www.mygenerationsoftware.com

Not only is MyGeneration 100% free but it comes with a Free .NET
Architecture called dOOdads available in VB.NET and C#. Here is what the
syntax looks like (and it's generated in seconds).
http://www.mygenerationsoftware.com/dOOdads/dOOdads.aspx

// Load and Save
Employees emps = new Employees();
if(emps.LoadByPrimaryKey(42))
{
emps.LastName = "Just Got Married";
emps.Save();
}

// Add a new record
Employees emps = new Employees();
emps.AddNew();
emps.FirstName = "Mr.";
emps.LastName = "dOOdad";
emps.Save();

// After save the identity column is there for you
int i = emps.EmployeeID;
 
Back
Top