Tagged Questions
Fluent NHibernate lets you write NHibernate mappings in strongly typed C# code. This allows for easy refactoring, improved readability and more concise code.
60
votes
5answers
11k views
How do you map an enum as an int value with fluent NHibernate?
Question says it all really, the default is for it to map as a string but I need it to map as an int.
I'm currently using PersistenceModel for setting my conventions if that makes any difference. ...
26
votes
4answers
3k views
NHibernate or Fluent NHibernate?
I would be interested in hearing op opinions from others regarding whether which they would choose (no 'neithers' please ;), and why.
What are the downsides to using fluent? (version dependancy ...
26
votes
2answers
9k views
How to update database table schemas with NHibernate schema generation?
I'm trying to figure out how to use NHibernate configuration with mapping to update table schemas, rather than dropping and recreating them.
Currently I'm using the ...
22
votes
3answers
4k views
How to specify table name in Fluent NHibernate ClassMap class?
Hi
I am newbie to NHibernate and trying to use Fluent for mapping. My entity class name is different from the database table name it has to be mapped to.
I am using mapping class derived from ...
21
votes
1answer
13k views
Fluent NHibernate: How to create one-to-many bidirectional mapping?
Basic question: How to I create a bidirectional one-to-many map in Fluent NHibernate?
Details:
I have a parent object with many children. In my case, it is meaningless for the child to not have a ...
20
votes
1answer
6k views
How to configure fluent nHibernate with MySQL
I'm trying to configure nHibernate to use a MySql database. I found examples for mssql and sqlite but none for mysql.
So, how do I change this so it uses mysql:
Fluently.Configure().Database(
...
19
votes
5answers
4k views
Install NHibernate 3.2 with NuGet
I'm new to NHibernate and have been trying to get up and running with it, Fluent NHibernate and NHProf using NuGet. After reading this article ...
18
votes
5answers
6k views
Programming to interfaces while mapping with Fluent NHibernate
I have been whipped into submission and have started learning Fluent NHibernate (no previous NHibernate experience). In my project, I am programming to interfaces to reduce coupling etc. That means ...
18
votes
8answers
6k views
Nhibernate Fluent Tutorials
I have googled and looked around does anyone know of any hidden gems out there that is not in first couple pages of a google search....
18
votes
1answer
6k views
NHibernate Eager loading multi-level child objects
I have a hierarchy of objects, Order, Contact, Address:
public class Order {
public virtual Contact BillingContact { get; set; }
}
public class Contact {
public virtual Address Address { ...
17
votes
3answers
3k views
Class Map Generator for Fluent NHibernate
Is there a Class Map generator for Fluent NHibernate? I need something like db2hbm but I want it to generate Fluent Class Maps instead of xml mappings.
I am aware of AutoMapping for Fluent but that ...
17
votes
4answers
3k views
Override for fluent NHibernate for long text strings nvarchar(MAX) not nvarchar(255)
When ever you set a string value in fluent NHibernate it alwasy sets the DB vales to Nvarchar(255), I need to store quite a lot of long string which are based on user inputs and 255 is impractical.
...
16
votes
4answers
956 views
Do Fluent NHibernate and migratordotnet play nicely together?
I love Fluent NHibernate for building my DBs and so far haven't found a restriction that has halted me in my tracks.
However on my current project I expect to release to production very early in the ...
15
votes
1answer
7k views
Unable to cast object of type NHibernate.Collection.Generic.PersistentGenericBag to List
I have a class called ReportRequest as:
public class ReportRequest
{
Int32 templateId;
List<Int32> entityIds;
public virtual Int32? Id
{
get;
set;
}
...
15
votes
4answers
3k views
NHibernate.Spatial and Sql 2008 Geography type - How to configure
I am trying to use Nhibernate with the Sql 2008 Geography type and am having difficulty. I am using Fluent Nhibernate to configure which I am fairly new to so that may be the problem as well.
First, ...
15
votes
5answers
6k views
Cascade Saves with Fluent NHibernate AutoMapping
How do I "turn on" cascading saves using AutoMap Persistence Model with Fluent NHibernate?
As in:
I Save the Person and the Arm should also be saved. Currently I get
"object references an ...
14
votes
3answers
1k views
fluent nhibernate - many-to-many relationship mapping on same entity
I am having a problem trying to map out a many-to-many relationship , where both sides of the relationship reference the same entity. I am using Fluent NHibernate and NH3.1.
Basically, the scenario ...
14
votes
1answer
2k views
FluentNHibernate and NuGet, problem with NH version
I just updated my project to use NuGet for external references. I added reference to NHibernate, which added all other dependencies for NH. Than I added FluentNHibernate. Versions of NH downloaded for ...
14
votes
1answer
2k views
NHibernate L2 Cache configuration in Fluent NHibernate
Is ti possible to configure the L2 cache provider in code via FHN?
Adding a line to the following config is what I'm after:
return Fluently.Configure()
...
14
votes
2answers
2k views
14
votes
3answers
3k views
Generate table indexes using Fluent NHibernate
Is it possible to generate table indexes along with the rest of the database schema with Fluent NHibernate? I would like to be able to generate the complete database DDL via an automated build ...
12
votes
3answers
5k views
How to get Fluent NHibernate working with NHibernate 3.x
How to get Fluent NHibernate working with latest NHibernate 3.x trunk
I got the following Exception :
Could not load file or assembly 'NHibernate, Version=2.1.2.4000, Culture=neutral, ...
12
votes
3answers
2k views
MS Entity Framework VS NHibernate and its derived contribs (FluentNHibernate, Linq for NHibernate)
I just read this article about the Entity Framework 4 (actually version 2).
Entity Framework seems to offer a huge improvement over its first release. Thus, I have never ever used EF in any project, ...
12
votes
3answers
3k views
How to configure Fluent NHibernate to output queries to Trace or Debug instead of Console?
How to configure Fluent NHibernate to output queries to Trace or Debug instead of Console?
I'm using MsSqlConfiguration.MsSql2008.ShowSql() but it has no parameters and I can't find anything on ...
12
votes
1answer
1k views
Fluent NHibernate primary key constraint naming conventions
Is there any way to create a naming convention for my primary key constraints in Fluent NHibernate?
I know you can name foreign key constraints, but it does not appear possible to name the primary ...
12
votes
2answers
1k views
how to set generate_statistics = true with fluent nhibernate
Title says it all.
From what I understand I need to end up with this
<property name="hibernate.generate_statistics">true</property>
on the session factory configuration, but I've no ...
12
votes
9answers
9k views
NHibernate: Using Fluent Nhibernate to save child objects
In my system, I have two entities - ShoppingCart and ShoppingCartItem. Fairly generic use-case. However, when I save my ShoppingCart, none of the items are being saved to the DB.
Within my object, I ...
12
votes
2answers
2k views
How to create composite UNIQUE constraint in FluentNHibernate?
I know that I can Map(x => x.GroupName).WithUniqueConstraint() for a single property.
But how do create a composite unique constraint in fluent nHibernate (where the unique constraint operates on the ...
11
votes
2answers
252 views
How to activate the second level cache on a lazy loaded property with own user type?
Preface:
In my application, I store raw WAV data in the database as byte[]. In my domain model there is a class PcmAudioStream that represents that raw WAV data. I created an implementation of ...
11
votes
2answers
647 views
2010 Beginners guide to fluent nHibernate
I need some tutorials on how to get started with nHibernate and Fluent nHibernate. I'm coming from an Entity Framework background (which seems easier to use). I've tried sites like ...
11
votes
1answer
632 views
Anyone know of any decent resources on Stored Procedures for Fluent Nhibernate 1.1
A recent release of Fluent Nhibernate (1.1) now supports stored procedures. I was wondering if anyone out there has found any good blog articles on how to do this!
I am not asking about using classic ...
11
votes
6answers
3k views
Problems using FluentNHibernate + SQLite with .NET4?
I have a WPF application running with VS2010 .Net3.5 using Nhibernate with FluentNHibernate + SQLite, and all works fine.
Now I want to change to use .Net4, but this has turned into a more painful ...
11
votes
2answers
1k views
Fluent NHibernate - How to map a non nullable foreign key that exists in two joined tables
I'm mapping a set of membership classes for my application using Fluent NHibernate. I'm mapping the classes to the asp.net membership database structure. The database schema relevant to the problem ...
11
votes
6answers
2k views
Using MVC and fluent Nhibernate, how do I validate unique fields on my ViewModel before I bind them to my Domain Object and Save them?
I have a website where I allow users to create new Part records. I'm trying to figure out the best way to validate specific fields for uniqueness. I want to make sure that somebody doesn't try to ...
11
votes
2answers
1k views
Fluent NHibernate entity HasMany collections of different subclass types
So everything is working well with the basic discriminator mapping. I can interact directly with entities A and B without any problems.
public class BaseType {}
public class EntityA : BaseType {}
...
11
votes
4answers
12k views
Fluent NHibernate Many-to-Many
I am using Fluent NHibernate and having some issues getting a many to many relationship setup with one of my classes. It's probably a stupid mistake but I've been stuck for a little bit trying to get ...
10
votes
5answers
2k views
Binary Blob truncated to 8000 bytes - SQL Server 2008 / varbinary(max)
I have upgraded from Fluent Nhibernate 1.0 with Nhibernate 2.1 to pre-
release 1.x with NHibernate 3.0 GA and have hit what I think is a regression, but I want to hear if that's indeed the case.
I ...
10
votes
1answer
286 views
Fluent NHibernate JoinedSubClass is obsolete
I wonder about something. I'm sitting here with a solution there I have 1 superclass that has 2 subclasses and I'm currently mapping this using JoinedSubClass, but I get that this method is obsolete, ...
10
votes
1answer
519 views
Fluent NHibernate Default Conventions
I'm trying to find a resource that shows what default conventions Fluent NHibernate uses with no custom (user) conventions applied.
Thanks!
10
votes
4answers
3k views
10
votes
5answers
7k views
fluent nhibernate HasOne WithForeignKey not working
Whenever I load a Task class, the Document property is always null, despite there being data in the db.
Task class:
public class Task
{
public virtual Document Document { get; set; }
Task ...
9
votes
1answer
1k views
What are the differences between HasOne and References in nhibernate?
What are the differences between HasOne() and References() in nhibernate?
9
votes
1answer
4k views
Fluent Nhibernate left join
I want to map a class that result in a left outer join and not in an innner join.
My composite user entity is made by one table ("aspnet_users") and an some optional properties in a second table ...
9
votes
4answers
19k views
NHibernate - not-null property reference a null or transient value
I'm getting this exception (Full exception at the bottom):
NHibernate.PropertyValueException was unhandled by user code
Message="not-null property references a null or transient
...
9
votes
3answers
4k views
Mapping Composite keys in Fluent Nhinbernate
I am new to fluent NHinbernate, now I face one problem with mapping composite keys.
Can anyone pointing out the URL or sample please?
9
votes
2answers
5k views
Does Fluent-NHibernate support mapping to procedures?
I've been wondering if it's possible to have Fluent-NHibernate communicate with stored procedures that already exist and assign mapping from the result set to my own domain objects.
Also is ...
8
votes
1answer
156 views
How does one gracefully merge object graphs after NHibernate StaleObjectStateException?
We are trying to combine objects after a StaleObjectStateException has been thrown to save a merged copy.
Here's our environmental situation:
List item
Multi-user system
WPF Desktop application, ...
8
votes
3answers
2k views
which version of fluent nhibernate is compatible with nhibernate 3.2
i see when i install fluent nhibernate 1.2 from Nuget, it downloads nhibernate 3.1. If i want to use nhibernate 3.2, how would i do that through nuget and it is compatible with fluent nhibernate 1.2 ...
8
votes
2answers
266 views
NHibernate with Firebird… are these features enabled?
We're using NHibernate to great success with a Firebird backend. My question relates to the features available in NHibernate being supported by Firebird. If you have any expertise with Firebird and ...
8
votes
2answers
963 views
Problem with linq query
I'm trying to use linq to NHibernate (with Fluent NHibernate) but I have problems with linq query. Everytime I try to execute it I get this message :
"Method 'get_IsReadOnlyInitialized'
in type
...