|
Project Information
Members
|
Frog.NET Object Relational MapperFrog.NET is a simple but flexible object-relational mapper for easy identity-based access to database records. It features a fluent and developer friendly API for CRUD operations. Example using(var connection = new Connection("<connection string>");)
{
var repository = new Repository(connection)
var users = repository.GetAll<User>();
foreach(var user in users)
{
Console.WriteLine(user.Name);
}
}Download the latest alpha release of Frog.NET from here: http://frogdotnet.googlecode.com/files/frogdotnet_0.3.zip Documentation can be found at http://www.bestbrains.dk/frogdotnet/ |