A composite key is a database key whose value is made up of multiple typed values
0
votes
1answer
20 views
Entity framework 5 many to many when an entity is using composite key
im having some problems with EF 5 when i want to map many to many relationships using code first.
This is my scenario:
public class SegFunction
{
public virtual string Idaplication {get;set;}
...
1
vote
0answers
51 views
Java Persistence Populating Map with Id's from two different classes
I have created a basic EAV-Model using Java Persistence (EAV or similar is required because the the users will from time to time create new attributes dynamically at runtime).
I've recently hit a ...
0
votes
1answer
32 views
how to insert data into db table with 3 distinct values but insert additional columns that are not distinct
how to insert data into db table with 3 distinct values but also insert additional columns that are not distinct?
So I have table
data user
__________________________________
user_id ...
0
votes
3answers
34 views
Primary Key MySQL Error
I'm trying to make an database and one of my tables use composite primary keys. This works fine until I try to make a foreign key to a separate table using the 2nd composite key. Error given is "ERROR ...
0
votes
1answer
30 views
creating a compound or composite key on google app engine
I have two models:
Car(ndb.Model) and Branch(ndb.Model) each with a key method.
@classmethod
def car_key(cls, company_name, car_registration_id):
if not (company_name.isalnum() and ...
0
votes
1answer
49 views
One-to-Many With Composite Keys and Different Column Names in Grails
This is a syntax question. I want a one-to-many relationship between Foo -> Bar (simplified here):
class Foo {
String fooPK1, fooPK2
static mapping = {
id composite: ["fooPK1", ...
0
votes
0answers
79 views
How to use single column from composite key in jpaql or hql query
Provider is hibernate 3.6.
I have a composite key declared via @IdClass, consisting of 4 columns. Everything works fine when it comes to storing and retrieving entity instances via a complete ...
0
votes
0answers
87 views
Notice: Undefined index: …\vendor\doctrine\orm\lib\Doctrine\ORM\Query\SqlWalker.php line 826
I have three entities PYS, VOTO and USUARIO. The problem comes in the One-to-many relation of VOTO with PYS because VOTO's Pimary Key is composite and mappedBy="pys" returns index undefined.
I've ...
0
votes
3answers
38 views
sql server, composite keys - ignoring duplicate
Is there a way to prevent sql from throwing an error when I try to save a record that already exists. I've got a composite key table for a many-to-many relationship that has only the two values, when ...
0
votes
2answers
44 views
cfwheels - removing unused composite key pairs
I've got an issue with a nested property that uses a composite key.
When I'm editing a model that has multiple instances of nested properties (with a composite key) and want to update it to have ...
2
votes
1answer
149 views
composite key resource REST service
I've come across a problem at work where I can't find information on the usual standard or practice for performing CRUD operations in a RESTful web service against a resource whose primary key is a ...
0
votes
0answers
37 views
Mapping composite key involving component in NHibernate
I have a table Item say,
CREATE TABLE ITEM(
Name NVARCHAR(20),
NetQuantity DECIMAL(3,2),
SiUnit NVARCHAR(3),
Supplier NVARCHAR(30)
);
And I have an Item class like this.
public class Item{
...
0
votes
1answer
83 views
Fluent NHibernate Composite Mapping
I am trying to map two tables :
the first one has an id (idA) and a field with the id (idB) of the other table.
the other one has a composite key based on the previous id (idB) and an other one ...
1
vote
0answers
27 views
Why can't I trust a client-generated GUID? Does treating the PK as a composite of client-GUID and a server-GUID solve anything?
I'm building off of a previous discussion I had with Jon Skeet.
The gist of my scenario is as follows:
Client application has the ability to create new 'PlaylistItem' objects which need to be ...
1
vote
0answers
94 views
Doctrine2: how do I link entities using two columns (or composite keys)?
I've been trying to find an answer to this question relating to composite from both Doctrine2 documentation and across the internet, but so far have had no firm leads.
To keep it brief, essentially I ...
0
votes
1answer
128 views
Client generated ID, PK is a composite key with parent. NHibernate isn't happy. Alternatives?
I am developing a client-side app which passes data back to a database. The client has the ability to create an object of type PlaylistItem. I do not wait for the database to respond with a generated ...
0
votes
0answers
102 views
How to display the inserted records using java with hibernate when primary key is not defined
In my web application I am able to insert the records into the database using java with hibernate as framework and postgres as database.I am following MVC architecture.And for my table no primary key ...
0
votes
1answer
305 views
Many-to-One w/ Composite key- Foreign key must have same number of columns as he referenced PK
Problem Summary
I am trying to map a many-to-one with a composite key. So far I haven't been able to locate another question that helps. I know how to map to a composite key with one-to-one, but it ...
1
vote
1answer
317 views
MVC Scaffolding Error for Composite Key with EF 4.5 Code First
I am trying to figure out how to make MVC Scaffolding to work with composite/complex key.
I have the following table:
public class Data
{
[Key, Column(Order = 0)]
[ForeignKey("Note")]
...
0
votes
1answer
37 views
Which Hibernate ( or NHiberate) tags and/or mapping classes would I use to create mappings to the bridge table called contract?
Let's say I have a bridge table with more than two foreign keys that make up it's composite key.
For Example,
Goverment table
gov_id int primary key
cournty_name String
NonProfitOrg Table
...
0
votes
1answer
80 views
How to create a navigation property with a key that is not the the primary key of the 2nd object?
In EF5, using a code first approach and fluent API, how can create a navigation property (many to 1) based on a key that is not the primary key of the other table?
My database model is as such, and I ...
0
votes
0answers
64 views
Named-Query to get a specific value from an associative table in EJB?
I asked a very similar question about a month ago, only then I needed it done in C# with a "regular" sql-statement.
The question went something like this:
"I have two tables and one table that ...
0
votes
1answer
266 views
How to execute ranged query in cassandra with astyanax and composite column
I am developing a blog using cassandra and astyanax. It is only an exercise of course.
I have modelled the CF_POST_INFO column family in this way:
private static class PostAttribute {
...
0
votes
1answer
686 views
Laravel 4 Eloquent ORM: How to update a pivot table entry that has composite primary keys
I have a many-to-many relationship like so:
user
- user_id
user_blocks
- blocker_user_id
- blocked_user_id
- unblocked (Timestamp)
Where blocker and blocked_user_id are a composite primary ...
0
votes
0answers
126 views
Backbone does POST instead of PUT on updates when composite key is used
I'm using a composite key in my model and generate the ID based on my composite key:
app.Assignment = Backbone.Model.extend({
idAttribute : [ 'personId', 'jobId' ],
parse : function(resp) {
...
2
votes
1answer
134 views
Doctrine 2 composite keys and DQL joins
I'm trying to filter out the children where the parent consists of a composite primary key, the parent is called subject and the children is courses:
Subject:
class Subject
{
/**
* @var ...
1
vote
1answer
110 views
How to map self join with composite key once the foreign key is part of the primary key
I am running into the following problem: I must map my Employee class to the following database schema (where id1 and id2 is a composite primary key):
--------------------------
| id1 | id2 | ...
0
votes
0answers
64 views
database design link 2 tables to 1 that is linked to several
I currently have 3 main tables animal, food and medicine.
From animal table I get tables:
species (cat,dog, bird, fish....)
size(small,medium,large, big...)
age(puppy, young adult, old...)
color ...
1
vote
1answer
190 views
SQL where clause with composite key
I'm writing custom Oracle queries to delete data from child tables in order to avoid foreign key constraint as part of a utility to clean up test data.
Let's say I've two tables - Table 1 (PK - ...
1
vote
2answers
56 views
Should primary key be used on a table that has only 2 columns, both are unique
If I have a table like the Following
CustomerAddress(CustomerId, AddressId)
Would I still need an additional primary key, e.g., int auto increment? Or would setting both the columns as primary keys ...
1
vote
1answer
1k views
Creating Composite Key Entity Framework
Shortly, I want to create composite keys on my table remaining with the primary key in order to improve sql server search performance. The performance issue occurs on 200k data table whenever I search ...
0
votes
1answer
101 views
Exception using Compsite Keys on EclipseLink
Im having trouble using composite primary keys with JPA EclipseLink. The problem is when I theres a foreign key that is the primary key of another table. I have this simple scenario.
User
public ...
2
votes
3answers
188 views
Composite keys in dictionaries
I am maintaining a dictionary that keeps track of the similarities between pairs of objects.
For example, this dictionary could look like this:
similarities = {
p1: {p2: v12, p3:v13, p4:v14},
p2: ...
0
votes
1answer
140 views
Vertical partitioning of composite keys
I have to track values for a combination of different resources everyday. So a table to do this might look like:
CREATE TABLE `data` (
`id` INT UNSIGNED NULL PRIMARY KEY AUTO_INCREMENT,
...
2
votes
1answer
148 views
Entity framework: How to return a row from a table with composite keys?
public class UserBuilding
{
[Key, Column(Order = 0)]
public int UserId { get; set; }
[Key, Column(Order = 1)]
public int BuildingId { get; set; }
public ...
0
votes
1answer
171 views
Many-to-many relationship with composite keys in Hibernate
Is there a way to use @JoinTable annotation, connecting each table by two fields? Here are the example tables:
+----------------+ +----------------------------------+ +----------------+
| ...
2
votes
1answer
45 views
5 Field Composite PK vs Surrogate PK
I need to create a database that will be used by a zoo to keep track of their animals and employees etc. The only thing I need help with is the Service table which will be used to record services ...
4
votes
1answer
198 views
Hibernate FechType.LAZY not working for composite @ManyToOne relationships
@ManyToOne relations without composite relations work just fine:
@Entity
@Table
public class Telefoni{
... other fields not included for simplicity sake
private DjecaRoditelja ...
2
votes
1answer
598 views
JPA table with 2 primary key fields
I have a table which contains only 2 fields. The table has a composite PK formed by these two fields.
When using Netbeans for creating entity beans from database, the entity bean is not created ...
1
vote
1answer
98 views
How to implement composite keys in Neo4J
I need to ensure that a combination of more than one property values in all nodes is unique. How to do that in Neo4J.
From Neo4J documentation available at ...
1
vote
0answers
117 views
Embedded Parent/Child relation in same class
I'm trying to map a Parent Child relationship within a single table with a composite id.
But I had some difficulties with it and could not seem to find the right answer through Google & ...
0
votes
0answers
41 views
Isolated rails applications data replication
I'm trying to make rails application that can safely replicate data with its copies. Data could be manipulated by user in every application copy. To avoid ID collisions on insert\update while ...
0
votes
0answers
20 views
One of the composite key's fields is in an embedded object
I have a class as follows
public class A{
private MyClass myClass;
@Embedded
private MyClass2 myClass2;
}
To have a composite key for class A, I'll have to have an object-id class for ...
0
votes
0answers
276 views
MVC4 Navigation Properties with composite keys
I have created an MVC4 web application using EF-database-first. The tables have composite keys [ID, Name, EffDate], and no foreign keys defined in the database:
For example, Department partial class:
...
2
votes
2answers
80 views
What is the best order for the fields of a composite key?
Say I have a table with the following fields:
LeagueID
MatchID
SomeData
A League will host many Matches. Usually each League will use its own local database, so the LeagueID field will be the same ...
0
votes
1answer
151 views
Why do I get a foreign key violation when I try to use NHibernate Session to save to a bridge table containing composite key?
Our office team is working and ASP.NET project that uses .NET Framework 4 and NHibernate 3.3.1
I have a POCO domain class called AllResourcesInfo ( which ultimately maps to a Resource table in the ...
2
votes
3answers
137 views
How can I retrieve many entities by composite key?
I am using Entity Framework (4.2 if that matters) and I have a model which has a composite primary key(two int columns). I have a list of pairs of ints which represent a list of objects I'd like to ...
0
votes
1answer
2k views
Hibernate Issue : Foreign key must have same number of columns as referenced primary key
Goal : I want to have importJobId in ImportJob as foreign key for id of allocation table, such that when we have importJobId then and then only we can have id in allocation as without Job there cannot ...
1
vote
1answer
206 views
Composite index not used in mysql
According to MySQL docs a composite index will still be used if the leftmost fields are part of the criteria. However, this table will not join correctly with the primary key; I had to add another ...
0
votes
3answers
468 views
Composite Foreign Key from multiple related tables
Just beginning to learn about SQL and had a question I couldn't figure out.
I have a setup based on the following tables and their primary keys, the columns with the same name between tables are ...



