Tagged Questions
3
votes
1answer
1k views
NHibernate child objects update problem
I have an object that called 'category' and the table looks like this.
CATEGORY
ID int
ParentCatalogID int
ParentCategoryID int << This is the ID of this table
Position ...
2
votes
1answer
63 views
Fluent Nhibernate - How do I set the name attribute of a set or bag collection?
This is a set collection:
<set access="field.camelcase-underscore" cascade="save-update" inverse="true" lazy="true" name="employees" table="TeamEmployee" mutable="true">
How do I set the name ...
1
vote
1answer
38 views
Fluent nhibernate map list of items
I have a class "Company" which has a list of "Operator"
public class Company
{
public IList<Opertator> Operators {get; set; }
public Int32 Id {get; set;}
}
public class Operator {
...
1
vote
0answers
77 views
Nhibernate: Multiple identical records returned from child in bag
When using a bag to return items from a child table I receive the correct number of items in the bag, however all rows are identical.
The Mapping for SearchPerson entity
<?xml version="1.0" ...
1
vote
1answer
220 views
Why is NHibernate creating a table without primary key?
We create the database using the schemaExport class of nHibernate. I now have an class with attributes from which we generated the nhibernate mapping. A part of this class is:
public class ...
1
vote
1answer
191 views
NHibernate collection mapping: it's deleting and inserting instead of updating
I'm not sure how to map a collection to update.
I have 2 tables:
Object - has a composite PK of 3 ints
ObjectAliases - has a FK to Object and a nvarchar PK for Name, obviously name is unique
...
1
vote
2answers
272 views
NHibernate bag - real collection items instead of proxies
I am experiencing some strange problems with NHibernate and the usage of proxy items within a bag. My mapping looks something similar to:
<?xml version="1.0" encoding="utf-8" ?>
<bag ...
1
vote
1answer
517 views
Nhibernate custom loader for collection
Im really hoping someone can help with this, have been trying various combinations for a day and a half now....
Basically I have a some hierarchical data stored in a single table, the usual parentID ...
0
votes
0answers
22 views
nhibernate bag with fixed relative parameters
I have the following mapping file:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="ReviewData" ...
0
votes
1answer
44 views
NHibernate - mapping a collection based on a different property to the identity
Consider the following tables:
Client(Id bigint, Name varchar(50))
Employee(Id bigint, Name varchar(50), ClientId bigint)
that are mapped like this:
<class name="Client" table="`Client`">
...
0
votes
1answer
48 views
NHibernate + Many-to-Many + bag + mapping table
I have following 3 classes.
BusinessStream
Scheme
Bus_Stream_Scheme_Map
When I try to execute transaction.Commit() method, after session.SaveOrUpdate() for BusinessStream, I get following error,
...