fluent-nhibernate
Is using the following akin to using the unit of work pattern
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..[详细]
2023-04-11 04:03 分类:问答Nhibernate Mapping interface
How to map an interface using fluent Nhibernate class Product { public virtual IProductStructure ProductStructure { get; set; }[详细]
2023-04-10 23:08 分类:问答NHibernate - fetching with futures
I have this Fluent NHibernate mapping: public LossMap() { Table(\"losses\"); Id(x => x.Id).Column(\"id\");[详细]
2023-04-10 21:22 分类:问答Fluent nHibernate - Wrong column name when self reference
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:[详细]
2023-04-10 20:44 分类:问答Fluent NHibernate - Query over a derived class
Lets say I have two classes: public class A { public virtual int Id { ge开发者_StackOverflowt; set; }[详细]
2023-04-10 20:11 分类:问答Fluent NHibernate: Lock row in a multiple user environment
Lets assume this hierarchy. public class A { public int Id { get; set; } public IEnumerable<B> Children { get; set; }[详细]
2023-04-10 17:32 分类:问答Why does this keep recreating my database?
I am using fluent nhibernate and have this line private static void BuidSchema(NHibernate.Cfg.Configuration config)[详细]
2023-04-10 12:02 分类:问答How to map collection of floats using Fluent NHibernate?
I have a class that contains a collection (IList) of floats that I\'m trying to map in FNH: class WeeklyHours {[详细]
2023-04-10 07:23 分类:问答Lucene.Net in ASP .Net MVC application [closed]
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[详细]
2023-04-10 03:37 分类:问答Fluent nHibernate and interfaces
Does fluent nHibernate play well wh开发者_JAVA技巧en using interfaces instead of concrete classes as properties?[详细]
2023-04-09 18:54 分类:问答