Tagged Questions
XML .NET object to database mappings for NHibernate, open source object-relational mapper (ORM) for the .NET framework.
28
votes
3answers
5k views
Inverse Attribute in NHibernate
How do I use the Inverse Attribute? If I am not mistaken, for one to many relationships the inverse attribute must be set to true. For many-to-many relationships, one of the entity class inverse ...
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 ...
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
1answer
9k views
nHibernate, No row with the given identifier exists
I have a mapping along the lines of this.
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Model.Entities" schema="etl" assembly="Model" default-lazy="false">
<class ...
16
votes
1answer
12k views
nHibernate 2.0 - mapping a composite-id *and* many-to-one relationship causes “invalid index” error
I have a problem. Imagine this data model:
[Person] table has: PersonId, Name1
[Tag] table has: TagId, TagDescription
[PersonTag] has: PersonId, TagId, IsActive
Since [PersonTag] isn't just a ...
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;
}
...
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
1answer
698 views
Discriminated unions in NHibernate
I'm wondering if there's any relatively easy way to extend NHibernate to support F#'s discriminated union. Not just a single IUserType or ICompositeUserType, but something generic that I can re-use ...
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
1answer
631 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
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 {}
...
9
votes
1answer
534 views
Using NHibernate with an EAV data model
I'm trying to leverage NH to map to a data model that is a loose interpretation of the EAV/CR data model.
I have most of it working but am struggling with mapping the Entity.Attributes collection.
...
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
5answers
15k views
The ProxyFactoryFactory was not configured
Considering this example as a base example, I created the application but when I execute this application I am getting the following error.
The ProxyFactoryFactory was not configured. Initialize ...
9
votes
2answers
3k views
nhibernate many-to-many mapping - additional column in the mapping table?
I have following mapping definitions:
<class name="Role" table="Role" optimistic-lock="version" >
<id name="Id" type="Int32" unsaved-value="0" >
<generator class="native" ...
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
...
8
votes
6answers
3k views
Docs & examples for NHibernate 3.2 mapping by code
Apart from Fabio Maulo's few blog posts, are there any other sites with examples and/or documentation on the new NHibernate 3.2 mapping by code feature?
8
votes
1answer
483 views
How do I change a child's parent in NHibernate when cascade is delete-all-orphan?
I have two entities in a bi-directional one-to-many relationship:
public class Storage
{
public IList<Box> Boxes { get; set; }
}
public class Box
{
public Storage CurrentStorage { get; ...
8
votes
3answers
7k views
nhibernate mapping: A collection with cascade=“all-delete-orphan” was no longer referenced
I am having some probs with my fluent mappings. I have an entity with a child collection of entities i.e Event and EventItems for example.
If I set my cascade mapping of the collection to ...
8
votes
3answers
2k views
Generate XML mappings from fluent Nhibernate
How do I generate xml mappings files as part of my tests in MappingIntegrationTests
I need to manually check if the fluent mappings correlate to the mappings in the leagcy project.
8
votes
2answers
1k views
How to implement correctly IUserType?
I need to create a custom type for NHibernate by writing a new mapper class that implements IUserType. While it is relatively straightforward to override most of the methods and properties, I get some ...
8
votes
2answers
3k views
NHibernate HiLo - new column per entity and HiLo catches
Im currently using the hilo id generator for my classes but have just been using the minimal of settings eg
<class name="ClassA">
<id name="Id" column="id" unsaved-value="0">
...
8
votes
3answers
2k views
NHibernate DuplicateMappingException when two classes have the same name but different namespaces
I have a class in my domain model root that looks like this:
namespace Domain
{
public class Foo { ... }
}
I also have another class with the same name in a different namespace:
namespace ...
8
votes
2answers
2k views
NHibernate - Updating a table with a trigger on it causes an error - Unexpected row count: 2; expected: 1
So I'm trying to update an object in my MS SQL 2005 database using NHibernate. Please keep in mind that this is a legacy database used in many live systems and I can't remove the triggers.
When my ...
8
votes
2answers
2k views
NHibernate Fluent vs. Attributes
I'm interested in moving some NHibernate configurations/mappings into the code to help with some maintenance issues. Can anyone provide any advice/pros/cons/comparisons of Fluent NHibernate vs. ...
8
votes
2answers
3k views
How do you map an enum as string in fluent nhibernate?
Is it possible to map an enum as a string using Fluent Nhibernate?
8
votes
4answers
1k views
Fluent NHibernate question
Let's say you have two tables, "Users" and "UserRoles". Here's how the two tables are structured (table - columns):
Users - UserID (int)
UserRoles - UserID (int), Role (string)
What I want is for ...
7
votes
1answer
155 views
Nhibernate - item gets its ParentID updated to null instead of being deleted
The business logic inside a process is:
begin transaction
add an item to a collection
perform a find("somethingA")
delete that item depending on the previous step.
commit transaction
Im using ...
7
votes
1answer
409 views
many-to-one with multiple columns
I have a legacy data base and a relation one-to-one between two tables. The thing is that relation uses two columns, not one. Is there some way to say in nhibernate that when getting a referenced ...
7
votes
5answers
523 views
Why Fluent NHibernate vs. hbm XML files?
While this is a subjective question, as a new NHibernate user, I'm curious as to why one would choose Fluent vs traditional XML mapping.
From my standpoint, when I first worked with NHibernate, I ...
7
votes
6answers
3k views
MySQL & NHibernate. How fix the error: Column 'ReservedWord' does not belong to table ReservedWords?
"I am getting a weird error when using NHibernate. And I don't know what is causing this error.
I am new to the whole Visual Studio and NHibernate, but not to Hibernate. I used Hibernate in the past ...
7
votes
3answers
3k views
Forcing NHibernate to cascade delete before inserts
I have a parent object which has a one-to-many relationship with an ISet of child objects. The child objects have a unique constraint (PageNum and ContentID - the foreign key to the parent).
<set ...
7
votes
3answers
2k views
Null value objects in NHibernate
I have a person entity containing an Address as a value object:
public Person()
{
WithTable("Person");
Id(x => x.Id);
Component<Address>(x => x.Address, a =>
{
...
6
votes
2answers
1k views
Which .NET data type is best for mapping the NUMBER Oracle data type in NHibernate?
I've seen some examples in which decimal is used in NHibernate projects for mapping to whole number columns in Oracle. Right now I'm using int and long in my program.
What are the advantages of ...
6
votes
1answer
899 views
Fluent NHibernate join not using primary key
I am trying to get a single property from a joined table where a non-PK in my main table is joined to the PK of the foreign table. Below is an oversimplified example of what I am trying to accomplish ...
6
votes
6answers
2k views
nhibernate mapping attributes vs fluent nhibernate
Do mapping attributes offer the same versatility as nhib hbm's do? Can you use them together with FNH to handle things FNH doesn't yet do as well as hbm's can?
Cheers,
Berryl
By mapping attributes, ...
6
votes
2answers
1k views
How to map IDictionary<string, Entity> in Fluent NHibernate
Possible Duplicate:
Use Component as IDictionary index in AsMap in Fluent Nhibernate
Hi,
I have an class with an IDictionary on it.
<map name="CodedExamples" ...
6
votes
4answers
514 views
Nhibernate entity with multiple Many-To-Many lists of the same type?
Does anybody know how I would map an entity with two many-to-many collections of the same child type.
My database structure is this....
The "normal" relationship will be....
tbl_Parent
...
6
votes
3answers
5k views
NHibernate “illegal access to loading collection” error
What is the reason of this error? My class is Course and it has notes. Mapping is as below. Any idea?
<bag name="Notes" table="NOTE" cascade="all">
<key column="COURSEID"/>
...
6
votes
4answers
3k views
How do I get fluent nhibernate to create a varbinary(max) field in sql server
How can I get fluent nhibernate to create a varbinary field in a sql server 2005 table that uses a field size of varbinary(max)? At the moment I always get a default of varbinary(8000), which isn't ...
6
votes
1answer
4k views
NHibernate 2.* mapping files: how to define nullable DateTime type (DateTime?)?
I know one of the breaking changes with NHibernate 2.* is that the NHibernate.Nullables are no longer supported. Therefore, what do you use in your mapping file to map the nullable DateTime? type? For ...
6
votes
1answer
6k views
Applying the Hibernate filter attribute to a Bag with a many-to-many relationship
Consider the following Hibernate mapping file:
<hibernate-mapping ...>
<class name="ContentPackage" table="contentPackages">
<id name="Id" column="id" type="int"><generator ...
6
votes
1answer
5k views
NHibernate mapping with a class hierarchy whose base class is abstract and the discriminator is not a string
Here are the domain model classes:
public abstract class BaseClass
{
...
}
public class ChildClass : BaseClass
{
...
}
Note that the parent class is abstract and this is what gives me some ...
6
votes
5answers
2k views
NHibernate: One base class, several mappings
I'm relatively new to NHibernate, but have been using it for the last few programs and I'm in love. I've come to a situation where I need to aggregate data from 4-5 databases into a single database. ...
5
votes
3answers
160 views
FluentNHibernate or port to NHibernate mapping by code
I have several projects using NH and FNH to generate the mappings (some Fluent some Automapped). There are still some bugs and missing features i need, but it seems that FNH could die because of ...
5
votes
3answers
370 views
No persister for: Castle.Proxies.<EntityName>Proxy and lazy=“true” in NHibernate?
I am trying to use lazy loading for a property of one of my entities
The property mapping is something like this:
<property name="Foobar" type="AnsiString" column="FOOBAR" lazy="true"/>
...
5
votes
1answer
181 views
Fluent NHibernate mapping IDictionary<string, class> in a smart way
Given these classes:
using System.Collections.Generic;
namespace FluentMappingsQuestion
{
public class Entity
{
public virtual int Id { get; set; }
public virtual ...
5
votes
2answers
148 views
Mapping one-to-one relationship with a wrong (brownfield) database schema
I have to model this relationship in NHibernate (simplified the code a bit to stay on-topic) - an employee can be an accountmanager (so, it's optional):
table Employee (Id, Number, Name)
table ...
5
votes
2answers
3k views
Composite Key/Id Mapping with NHibernate
i have the following tables in my database:
Announcements:
- AnnouncementID (PK)
- Title
AnouncementsRead (composite PK on AnnouncementID and UserID):
- AnnouncementID (PK)
- UserID (PK)
- DateRead
...