I am creating a web service that uses Fluent NHibernate and I am developing across several Machines that of course have different connection strings.I am wondering how do I go about configuring the te
Problem Description: I am trying to execute a stored procedure with an input parameter. The stored procedure executes correctly when run from MSSQL 2008 SQL Studio. However I get an error while runni
I\'m Creating a WCF Web Service and mapping my domain model using Fluent Nhibernate and I have noticed that the objects can be represented in different ways and so can the data behind it.
I have 3 classes that I\'m trying to map using fluent nHibernate, but I\'ve hit a wall. I have a collection in class A that refers to class B, B also has a reference to A. So that is a Many-to-one rel
Im in a bit of a jam. Problem NHibernate forces me to make a foreignkey column nullable, which is a very bad idea for our database and quite ugly.
I\'m trying to create a SQL query in NHibernate using CreateSQLQuery: var query = session.CreateSQLQuery(
Application has many extension assemblies and they contain mappings for their classes. I need to add prefix to all (base, join, many-to-many, ...) table names in those mappings.
I have a mapping issue with the table-per-class hierarchy in Fluent/NHibernate.When retrieving the records from the database, I keep getting an error (the Wrong type exception)
Is it possible with Fluent NHibernate to map a property with开发者_如何学运维 the following signature?
Consider the following class hierarchy: public abstract class Entity { public virtual int Id { get; private set; }