I\'m using fluent nHibernate (automapper) and at the same time use开发者_运维知识库 Asp.net Membership, but how do i reference aspnet_Users table?
In short, what works faster: SessionFactory precompiling XML configuration, or Fluent NHibernate providing
I\'m having a problem with a pretty simple setup in NHibernate. (I\'m using Fluent Nhibernate) I have two objects as follows, setup with a bi-directional many-to-many mapping.
I am using Fluent NHibernate and in certain cases my query is failing with a System.IndexOutOfRangeException.
I have the following class: public class Element { public Guid Id { get; set; } public ElementRouting route { get; set; }
just wondered if anyone know if there is a way to crate a Many-to-Many relationship table automatically using some attribute? without creating the table, or mapping a class to become that relation tab
i\'m trying to get multi tenancy working in my app - using nhibernate integration facility from castle and i think that the funky combination of using the nh facility combined with fluent is making th
I am a complete beginner with Fluent and I am running into an issue which is probably my own fault. I have a namespace containing 3 classes. Entity, EntityVersion and Property. No inheritance involve
I have a class called ReportRequest as: public class ReportRequest { Int32 templateId; List<Int32> entityIds;
Reading some 开发者_高级运维posts from Jimmy Boggard and wondering - how exactly is it possible to map those beasts with fluent nhibernate?