Search Results

3
votes
2answers
2k views

How do you construct a LINQ to Entities query to load child objects directly, instead of calling a Reference property or Load().

I'm new to using LINQ to Entities (or Entity Framework whatever they're calling it) and I'm writing a lot of code like this: var item = (from InventoryItem item in db.Inventory …
1
vote
2answers
533 views

How do you do a SQL style ‘IN’ statement in LINQ to Entities (Entity Framework) if Contains isn’t supported?

I'm using LINQ to Entities (not LINQ to SQL) and I'm having trouble creating an 'IN' style query. Here is my query at the moment: var items = db.InventoryItem .Incl …
4
votes
6answers
738 views

What about a SingleOrNew() method instead of SingleOrDefault() in LINQ?

The SingleOrDefault() method is great because it doesn't throw an exception if the collection you're calling it against is empty. However, sometimes what I want is to get a new object …
3
votes
1answer
286 views

How would you write an Upsert for LINQ to SQL?

So I'd like to write a generic Upsert function for LINQ to SQL and I'm having some trouble conceptualizing how to do it. I'd like it to work something like this: var db = new DataC …
0
votes
0answers
24 views

Any libraries available for doing LINQ over EAV pattern?

Does anyone know of any libraries which implement an abstraction in LINQ over the EAV (Entity Attribute Value) pattern? I have a large legacy EAV database and I'm trying to create a cleaner data a …