2
votes
8answers
138 views
Is there a simple way to create a unique integer key from a two-integer composite key?
For various reasons that aren't too germane to the question, I've got a table with a composite key made out of two integers and I want to create a single unique key out of those tw …
0
votes
0answers
31 views
Fluent NHibernate mapping a composite ID from inherited composite IDs
Let's say I have an existing database with the following 3 tables:
Table1:
(PK)T1ID1
(PK)T1ID2
Table2:
(PK)T2ID1
Table3:
(FK)T1ID1
(FK)T1ID2
(FK)T2ID1
(Where the 3 keys come fro …
1
vote
3answers
63 views
Is there a Linq operation to determine whether there are items in a collection who have the same values for a pair of properties?
C#: I have a collection of objects . T has 2 properties. Property A and Property B. The rule that this collection needs to adhere to is that the combination of values for A and B m …
1
vote
2answers
87 views
Surrogate key as a foreign key over composite keys
I realise there might be similar questions but I couldn't find one that was close enough for guidance.
Given this spec,
Site
---------------------------
SiteID int identi …
0
votes
1answer
33 views
Is it possible to map a composite key in fluent nhibernate where half of the key is an identity field in the database?
As the question states, is it possible to map a composite key in fluent nhibernate (or non fluent i suppose) where one of the two fields used in the composite is an identity field? …
2
votes
3answers
223 views
Composite Primary Key performance drawback in MySQL
We have a table with a composite Primary key consisting of three fields (and it is in MySQL 5.1). There are near 200 inserts and 200 selects per second on this table, and the size …
1
vote
6answers
456 views
Database Design: Composite key vs one column primary key
A web application I am working on has encountered an unexpected 'bug' - The database of the app has two tables (among many others) called 'States' and 'Cities'.
'States' table fie …
-1
votes
1answer
96 views
Composite primary key [closed]
create table w(
id numeric(10),
code varchar(10)
primary key(id,code))
create table y(
id numeric(10),
code varchar(10),
bin varchar(10)
primary key(i …
1
vote
2answers
86 views
Composite Key on a Self Referencing Table
We have a composite primary key for the site table defined below. Functionally, this does exactly as we would like it to. Each site should have a parent site of the same district …
0
votes
1answer
121 views
nHibernate Composite Key Class Type Mismatch
I have a legacy table with composite keys that are mapped to 3 other tables, since this table have other attributes in it, since it is not a simple mapping table, I can't use the m …
0
votes
2answers
176 views
Postgres: How to do Composite keys?
I cannot understand the syntax error in creating a composite key. It may be a logic error, because I have tested many varieties.
How do you create composite keys in Postgres?
CRE …
1
vote
2answers
155 views
Should I use a composite key for a map table, which is also used for a foreign key?
I am using ASP.NET and the Entity Framework to make a website. I currently have a map table for a many to many relationship between... let's say users and soccer teams. So:
User …
0
votes
0answers
186 views
JPA createQuery with a partial composite key
The code schematic below works fine but it breaks our coding guidelines due to the unchecked cast. How can this be re-written to use createQuery or otherwise avoid the unchecked c …
0
votes
1answer
155 views
Saving a grails object with a composite id
The answer to this may be obvious but how do you save an object, in grails, that has a composite id. I have an object that has a composite id including a long and a date and I am …
1
vote
2answers
442 views
nHibernate - stored procedures and composite keys
I'm trying to map the output of a stored procedure to an object in my project using nHibernate.
The object is delcared like this:
public class NewContentSearchResult
{
public …
