Top "Nhibernate" questions

NHibernate is an open source object-relational mapper (ORM) for the .NET framework.

Two different assembly versions "The located assembly's manifest definition does not match the assembly reference"

I have a project that I am working on that requires the use of the Mysql Connector for NHibernate, (Mysql.…

c# nhibernate assemblies migratordotnet
Could not load file or assembly crdb_adoplus.dll

For the following error: Could not load file or assembly ‘file:///C:\Program Files\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\…

c# nhibernate crystal-reports
Exception "The operation is not valid for the state of the transaction" using TransactionScope

We have a web service on server #1 and a database on server #2. Web service uses transaction scope to produce distributed …

c# sql-server nhibernate msdtc
How to delete child object in NHibernate?

I have a parent object which has a one to many relationship with an IList of child objects. What is …

nhibernate
How do I call a stored procedure from NHibernate that has no result?

I have a stored procedure that logs some data, how can I call this with NHibernate? So far I have: …

c# nhibernate stored-procedures
What is a Projection?

What is a Projection, in terms of database theory and NHibernate when using SetProjection()?

database nhibernate relational-algebra
How to get a distinct result with nHibernate and QueryOver API?

I have this Repository method public IList<Message> ListMessagesBy(string text, IList<Tag> tags, int pageIndex, …

c# nhibernate queryover
Linq to NHibernate

I have been looking around for some example projects or tutorials on Linq to Nhibernate. Does anyone know of any …

.net linq nhibernate linq-to-nhibernate
How to log SQL calls with NHibernate to the console of Visual Studio?

I have the following configuration file for NHibernate: <?xml version="1.0" encoding="utf-8" ?> <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2"> &…

visual-studio nhibernate logging log4net
nhibernate lazy load options

What is the difference between lazy="true" and lazy="proxy" in nhibernate?

nhibernate proxy lazy-evaluation