Tagged Questions
0
votes
1answer
213 views
NHibernate: Composite key, one-to-one relation and “Error performing LoadByUniqueKey”
I have two classes. Class 1:
public class Einsatz
{
public virtual ProjNrPindex Id { get; set; }
public virtual Int32? Knr { get; set; }
public virtual String RessNr { get; set; }
...
1
vote
1answer
93 views
nhibernate mapping multiple composite key thowing System.IndexOutOfRangeException
I have the following situation in a legacy database [sample]
table1
**ID_TABLE1 [PK]
ID_SOURCE** [PK]
table2
**ID_TABLE2 [PK]
ID_SOURCE** [PK]
table3
**ID_TABLE3 [PK]
...
1
vote
0answers
1k views
NHibernate - mapping composite key to two foreign keys
I've got the following two tables:
Jobs
--------
JobNo
DivisionID
NCRs
--------
ID
JobNo
SpoilageJobNo
DivisionID
JobNo and DivisionID make up a composite key in the Jobs table (I know, but ...
2
votes
1answer
1k views
Fluent Nhibernate: Trying to create entity with composite key that is also the keys for two references
The references are unidirectional. The table (StoreProduct) for this entity is actually a join table that has these fields:
Store_id
Product_id
ExtraBit
So I went with an entity having a ...
2
votes
1answer
216 views
how to persist a composite pattern with nhibernate
I am looking for examples of how to persist a tree structure, ideally one used as part of a composite pattern. Gabriel Shenker apparently wrote something about this awhile back but the link is dead.
...
2
votes
1answer
3k views
Fluent NHibernate Composite ID table problem
I'm kinda new to nhibernate and i ran into a problem.
I have the following tables:
Table 1:
Table Name: Users,
Column 1: ID,
Column 2: Name
Table 2:
Table Name: Missions,
Column 1: ID,
Column 2: ...
0
votes
1answer
105 views
NHibernate composite application - startup records for module
I am building a composite (Prism) WPF application. I hava managed to build some core elemets: for example module discovery from folder.
I am also using NHibernate (Fluent) to persist data. I was able ...
0
votes
1answer
370 views
NHibernate - How to map a table with multiple foreign keys to its corresponding classes?
I have the following tables :
Basically, a user is part of a project and has certain access rights on that particular project.
I created the following entities:
User
Project
AccessRight
How ...
2
votes
2answers
568 views
Enumeration in composite id - fluent NHibernate 1.2
The mapping of a property that's of an enumerated type and is part of a composite key seems to have changed from int to string, and there's no way of changing it back.
I've got this data class:
...
0
votes
1answer
340 views
NHibernate - Composite entity, joining table mapped by another entity
I have the following tables:
A
--
Id : int
SomeString : varchar(20)
B
--
Id : int
BString: nvarchar(10)
AId : int // FK to A
I have an entity A which is already mapped to the table A.
For the ...
0
votes
2answers
5k views
Nhibernate , collections and compositeid
I have the tables below:
Bucket(
bucketId smallint (PK)
name varchar(50)
)
BucketUser(
UserId varchar(10) (PK)
bucketId smallint (PK)
)
The composite key is not the problem thats ok I know ...
0
votes
1answer
408 views
NHibernate without any intrusive class decoration?
NHibernate doesn't require too much decoration of POCOs, but having to put surrogate keys in my domain objects makes me feel a bit ill. Call me over-zealous - I'd prefer 'ideologically consistent' - ...
1
vote
1answer
2k views
NHibernate - Composite-Id on relation - Where ID of parent is not same composite
Say I have these table in an Oracle database
Person:
PersonId <- PK ID (int, from sequence)
PersonFirstNameID <-- int
PersonLastNameID <-- int
PersonSecurityID <-- int
PersonDetails
...