A recent release of Fluent Nhibernate (1.1) now supports stored procedures. I was wondering if anyone out there has found any good blog articles on how to do this!
Let\'s say I have a table: Project Id Title ProjectManagerId ContactId ProjectManagerId and ContactId are both id\'s from a table named Person:
Taking an example that is provided on the Fluent nHibernate website, I need to extend it slightly: (source: fluentnhibernate.org)
I have a legacy data base and a relation one-to-one between two tables. The thing is that relation uses two columns, not one. Is there some way to say in nhibernate that when getting a referenced enti
All examples of fluent nhibernate make such(or similar) call: c.AddMappingsFromAssembly(typeof(Product).Assembly);
I am having troubles with a nHibernate query. I 开发者_Go百科have a db which stores vehicle info, and the user is able to search the db by make, model, type and production dates.
I\'ve been trying to implement cache regions with fluent nhibernate and I\'ve done the following so far:
I am trying to write a naming strategy for NHibernate that will prefix table names based on what assembly the poco is defined in.Right now my strategy is just trying to append any prefix at all to the
I have a database of names of people that has (currently) 35 million rows. I need to know what is the best method for quickly searching these names. The current system (not designed by me), simply has
Reverse engineering an existing database to map with N-Hibernate using Fluent N-Hibernate. How can I map this?