I\'ve got an Account model object and a UNIQUE constraint on the account\'s Name. In Domain Driven Design, using nHibernate, how should I check for the name\'s unicity before inserting or updating an
I have a rather tricky problem that has been bugging me the last 2 days. 开发者_如何学CThis is my class:
How can I ma开发者_运维百科p a stored procedure using mapping by convention or mapping by code?
We are using decimal numbers with a scale of six decimals, ie 1.123456. Now as we are using NServiceBus and we need to persist this value in our saga data we got trouble.
Looking for some expertise before I declare the NHibernate framework broken or myself crazy! I\'m trying to eagerly load a self-referencing tree with NHibernate and can successfully load most c开发者
Consider the following class hierarchy: public abstract class Entity { public virtual int Id { get; private set; }
See more: MySQLStored Hi to all. I have a proyect with c#+nhibernate+fluent+mysql I don\'t understand why i have to map the tables in hbm xml file, when this information is in database, but this is
I have a c# .net 3.5 application using NHibernate and MySQL. My SQL tables are laid out in a many-to-many pattern linking configuration strings to tasks
I\'m trying to generate the correct mapping for 2 classes that have a collection of each other within them.
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..