I really can not describe my question better in the title. If anyone has suggestions: Please tell!

I use the Linq to SQL framework in .NET. I ran into something which could be easily solved if the framework supported this, it would be a lot of extra coding otherwise:

I have a n to n relation with a helper table in between. Those tables are: Items, places and the connection table which relates items to places and the other way. One item can be found in many places, so can one place have many items.

Now of course there will be many items which will be in ALL places. Now there is a problem: Places can always be added. So I need a place-ID which encompasses ALL places, always. Like maybe a place-id "0". If the helper table has a row with the place-id of zero, this should be visible in all places. In SQL this would be a simple "Where [...] or place-id = 0", but how do I do this in Linq relations?

Also, for a little side question: How could I manage "all but this place" kind of exclusions?

link|improve this question

71% accept rate
I'm so confused. – Byron Sommardahl Apr 11 '10 at 19:48
I really couldn't describe it better. I just need a "default" value which will always relate. Like a wildcard value which is "all values"!! – sinni800 Apr 11 '10 at 20:38
feedback

1 Answer

In Linq to Sql the relationships between the entities as defined in the dbml layout cannot be quantified in the way you are describing. You could write a method in a partial class that uses the linq join syntax, and delete the relationship from the diagram.

Alternatively you could use the entity framework instead of linq to sql as the relationships can be defined in more advanced ways on the diagram.

link|improve this answer
Hmmm. Alright, I will try those two suggestions out and see... – sinni800 Apr 12 '10 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.