I got a polymorphic relationship like the following example: public class A { public virtual Guid Id { get; set; }
Ok I have 2 objects and a foreign key. The first object is. public class OutboundEmailMap : ClassMap<OutboundEmail>
I\'m having an issue with my linq query.I am trying to filter objects based on selected values. We use a query model which returns a System.Linq.Expressions.Expression and uses it to create an nhibern
I\'m trying to delete an entity (ForumTopic) and have that delete the Posts (ForumPost) within it.Here are my entities:
I\'m trying to add a mapping to the table IdentityGroup which has ManyToMany IdentityUsers thought the table IdentityGroupIdentitiy. However when I add the mapping. The result seems to be a something
I am getting the following error using Fluent: 12:16:47,879 ERROR [7] Configuration [(null)]- An association
i have an abstract class public abstract class Document { public int DocumentID {get; set;} } and derived class
I have two tables in a legacy database... tblParentTable (int id, string specialIdentifier, ...) tblChildTable (int id, string specialIdentifier, ...)
I have the following tables: A -- Id : int SomeString : varchar(20) B -- Id : int BString: nvarchar(10) AId : int // FK to A
I am starting to use Fluent nHibernate on a project and am trying to get the automapping to work. At the time I am stuck with the mapping of our database\'s timestamp fields into byte-arrays. We are u