Does using an nHiberbnate session/transaction combo perform the same function that the unit of work pattern would? below is some code found on the web..
How to map an interface using fluent Nhibernate class Product { public virtual IProductStructure ProductStructure { get; set; }
I have this Fluent NHibernate mapping: public LossMap() { Table(\"losses\"); Id(x => x.Id).Column(\"id\");
The mapping on foreign key are made with the wrong name. Why? Here\'s my classes: The order of the properties seems to be important:
Lets say I have two classes: public class A { public virtual int Id { ge开发者_StackOverflowt; set; }
Lets assume this hierarchy. public class A { public int Id { get; set; } public IEnumerable<B> Children { get; set; }
I am using fluent nhibernate and have this line private static void BuidSchema(NHibernate.Cfg.Configuration config)
I have a class that contains a collection (IList) of floats that I\'m trying to map in FNH: class WeeklyHours {
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this po
Does fluent nHibernate play well wh开发者_JAVA技巧en using interfaces instead of concrete classes as properties?