Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
25 views

Getting rid of unnecessary join when using link tables with EF

I have this database schema: User <-- UserRole --> Role The Role table has a few columns but I'm only interested in the primary key and I can get that from UserRole's foreign key so I ...
1
vote
3answers
658 views

ms access crashes when loading an mdb containing a linked sql server table

I have an mdb which used to contain a bunch of linked tables. These links point to tables in another Access mdb. As part of a controlled migration, I'm changing these link table to point to an SQL ...
1
vote
1answer
33 views

How do you deal with linktables when using Domain Driven Design and nHibernate?

If you have the tables Groups, Users, Channels and between each two a linktable, how do you organize that in Domain Driven Design and nHibernate? Does a Group have a UserCollection and a ...
0
votes
1answer
41 views

Turn two tables and a link table into one big table

I tried looking for this question, but found nothing relevant. So here goes... I have three tables, the extremely simplified versions of which are: Practitioners: practitioner_id :: int name :: ...
0
votes
1answer
45 views

What about link tables in domain-driven-design?

In the book .NET Domain-Driven Design with C# from Tim McCarthy there's an example of a link table (two foreign keys + one boolean column) that gets it's own class in the domain. Is this common? The ...