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

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;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top