Quick Start

The following will help you get up and running quickly with CodeNGen.

This information is also contained in the User Guide.

Using Code
Environment Setup 

Get DataUpdating DataDeleting DataData BindingAdvanced Saves CodeNGenDataSource
Getting Data
Get a single customer from the database:
											Customers customers = new Customers();
											Customer customer = customers.GetByCustomerId(100);
										
Get a collection of customers:
										Customers customers = new Customers();
										customers.GetAll();