It's been a long time coming: Updated NHibernate templates are finally here!Oh wait, not updated, all new and improved NHibernate templates!
PLINQO for NHibernate
PLINQO makes NHibernate "so easy, even a caveman can do it."
PLINQO can generated your HBM files, entity classes, and all NHibernate configuration in seconds. It then allows you to safely regenerate that code at anytime, thus synchronizing your mappings with the database while still intelligently preserving custom changes. PLINQO for NHibernate is a enhance and simplify wrapping of NHibernate that brings the best practices, optimizations, and convenience of the PLINQO frameworks to NHibernate.
PLINQO offers these primary features over standard NHibernate:
Download the templates or the sample application, and then give us your feedback on the forums!
[Test] public void Promotion() { // The NHibernate Session is created for you. using (var db = new TrackerDataContext()) { // Query a User from the database. User tom = db.User .ByFirstName("Tom") .ByLastName("DuPont") .FirstOrDefault(); // Query a Role from the database. Role manager = db.Role .ByName("Manager") .FirstOrDefault(); // RoleList is a Many to Many collection. tom.RoleList.Add(manager); // Flush all changes to the database. db.SubmitChanges(); } }
Thank you for submitting this cool story - Trackback from DotNetShoutout
You've been kicked (a good thing) - Trackback from DotNetKicks.com
Any details on how sessions are handled/configured?
Please advise.
Thanks
Richard Davison
Proud owner of Codesmith Studio
Richard,
Please see this forum post for session details. :)
community.codesmithtools.com/.../46012.aspx
Tom
PLINQO for NHibernate, Beta 1 Released!