Ok, this is going to be a wall of text, but....basically, I have the following 3 classes: public class Address
I have a database structure where one table extends another table开发者_StackOverflow中文版, and then a third table has a foreign key that is valid in the first two tables.
My scenario is pretty simple, I have 1 table with about 20 products that I would like to add to level 2 cache (SysCache) using Fluent NHibernate. I query this table 4 different ways so I figure I\'d s
I have multiple databases that should all be active at the same time. They share schema, but not the data.
I have a domain class that looks like this. I want NHibernate to save the current value of LastUpdate when inserting/updating so that I can use it in queries, but to ignore it when retrieving a Foo fr
I\'ve a rather large domain-model that persists using fluent NHibernate to MS SQL Server 2008. Recently we\'ve been running into concurrency problems, so I implemented Versioning NHibernate\'s excell
I have following entities public class Entity1 { public virtual Guid Id { get; se开发者_Python百科t; }
Question is: how to write convention that prevents deleting entity reference if it inherits from type Root?
I have a lookup table that contains products (Product table) a CustomerOrder table that contains order details and an OrderLines table that contains a line per product ordered.
The goal here is have my complete database configuration and schema generation handled by fluent nhibernate.