Agile ORM is a lightweight framework that allows you to easily fetch and modify in an SQL Server database.
These are 5 easy steps to start using this project:
1. Add the connection string to your config-file with the key "ApplicationServices"
2. Add the Table attribute to your class specifying the table to map the class to
3. Add the Column-attribute to the properties of your class that you which to map to columns, specifying the columnname. (Note: at least one of them should have the option UniqueIdentifier specified)
4. Call ProviderFactory(Of YourClass).GetProvider to get an instance of a provider for your class
5. Use the methods Load, Insert, Delete and Update, passing objects in order to do all the necessary operations.
Have fun!
The project now also has a home:
http://kennethwp.hostahead.net/projects/agile-orm/