Tagged Questions

1
vote
1answer
271 views

ORM support for compound primary keys

I've read that compound primary keys will confuse the hell out of typical ORM code generators. Which ORMs work best with compound PKs and which to avoid? (I've a particular interest in .NET)
0
votes
2answers
29 views

Queries on compound pk

when using compound pk, can insertion of values be the same ? I illustrate an example to you guys: Creation of table: Create table test ( testno number(5) not null, testpaper varchar(2) not null, ...