I have this scenario: public class Survey : EntityBase { public virtual string Name { get; set; } } public class Response : EntityBase
I\'m building a new site from scratch and am considering using Fluent NHibernate for my ORM. I think it\'ll handle everything easily except, possibly, my XML columns. I\'ve never built a site with NHi
I\'m using Fluent NHibernate\'s automapper to map the following domain model (via AutoMap开发者_如何学Python.AssemblyOf<Ticket>()), but it\'s throwing an exception when creating a SessionFactory
I am trying to build a domain model that will allow me to manage Contracts. The Contract class is my aggregate root, and it has a single property right now, which is Reviewers.
I know its possible to generate the database tables from the domain model.But is there any way of doing things the other way.I have a totally awful database (worst I have ever seen).Its sharded (16 Sh
I\'m using Fluent NHibernate and the setup I have is as follows: An Address object, which is a simple list of address fields.
I\'m learning to use NHibernate validator and it\'s Fluent API (Loquacious). I have noticed is that I can\'t set an i开发者_运维问答nteger property or nullable int property (int?) to be not nullable.
Problem is simple I have two classes mapped with fluent nhibernate : public class A: EntityBase {} public class B: EntityBase
I\'m using Fluent NHibernate and I have two tables: BusinessPlan [Id, Year, CustomerCode] PreviousYearData [Id, Year, CustomerCode, MoreFieldsForData]
My application has the following entities: public class User { public virtual int UserID { get; set; } public virtual string UserName { get; set; }