-
Notifications
You must be signed in to change notification settings - Fork 0
Old
- Generic repository for entity framework | update 0.2.1
- Unit of work implementation for entity framework
- Few utilities for Mvc - 404 handling, select helper
- Local data - structure for storing data in HttpContext (also Session data and Cookies data)
- Support for lower case routes in Mvc
- HtmlHelper extensions
- Class for generating slugs
- Linq fulltext search extension method
- Mail API
- T4 template that generates repositories
- RSS result for Mvc
1/11/2012 - v0.2.5.5
- reverted select helper back to the way it was. the fix didn't work the way I wanted.
1/10/2012 - v0.2.5
- fixed select helper some more, now value is of TValue instead of object
- added some xml comments
- performed some minor refacatorings
12/5/2011 - v0.2.4.1
- fixed a bug, when select helper would not set the specified selected value
11/14/2011 - v0.2.4
- added support for .NET transactions (using "TransactionScope class":http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx)
10/12/2011 - v0.2.3
- added support for POCO entities generated from edmx
- added feature for using razor templates with mailbot (uses "RazorEngine":http://razorengine.codeplex.com/)
5/24/2011 - v0.2.2
- added generic RSS result for Mvc
- added Update method to repository for use with Entity framework code first
4/19/2011 - v0.2.1
BREAKING CHANGES!
- renamed namespace NecroNet.Toolkit.EntityFramework to NecroNet.Toolkit.Data
- updated T4Template to reflect that
- cleaned up the code for repository base, it's now possible to simply create repositories based on data store of your choice (for example I included MemoryRepository that uses in memory List instead of a database, which should be useful for unit testing)
4/17/2011 - v0.2 - alpha
BREAKING CHANGES!
- added support for EF code first, code first repositories now inherit from CodeFirstRepositoryBase and .edmx repositories inherit from EdmRepositoryBase. The old t4 template will not work with new version, updated t4 template is available in T4Templates folder.
- fixed repository unit tests
4/14/2011 - v0.1
- added Session data and Cookies data providers
- added WithInclude method for entity framework repository
h2. Dependencies