MyGeneration for .NET

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • MyGeneration

    MyGeneration for .NET

    MyGeneration is 100% free, tired of hand coding business objects, stored
    procedures, why not spend your time doing other things? Let us help you.
    See http://www.mygenerationsoftware.com

    We also offer a free .NET Architecture available in C# and VB.NET called
    dOOdads that you can generate in seconds, we also have Gentle.NET,
    NHibernate and other templates.

    With dOOdads you can point and click on a table and generate your stored
    procedures, business entities from both table and views and it takes mere
    seconds, then you can work with your data like this:

    From the Employee Northwind database:
    See http://www.mygenerationsoftware.com/...s/dOOdads.aspx

    // Load and Save
    Employees emps = new Employees();
    if(emps.LoadByP rimaryKey(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 already here for me.
    int i = emps.EmployeeID ;


Working...