0
votes
2answers
31 views
NullReferenceException on trying to enumerate an empty IQueryable.
I am getting a NullReferenceException when I try and convert the following LINQ to EF query. What could be wrong here?
List<DailyProductionRecord> prodRecs = ne …
1
vote
2answers
29 views
Linq to entities - searching in EntityCollection navigation properties.
We have classes
public Invoice: EntityObject
{
public EntityCollection<InvoicePosition> Positions { get {...}; set{...}; }
...
}
public InvoicePosition: EntityObjec …
3
votes
6answers
154 views
C# - code against a property using the property name as a string
What's the simplest way to code against a property in C# when I have the property name as a string? For example, I want to allow the user to order some search results by a propert …
3
votes
6answers
65 views
LINQ (to Entities) - Filtering items using ints
Using LINQ to Entities, how can I determine if any item from a List of ints exists in a comma delimited string of ints?
For example, I want to write something like the following …
1
vote
3answers
36 views
LINQ to Entities / SQL - Way of seeing what is attached to object context?
Bit of an odd question but is there a way of seeing what objects are attached to my object context. I am getting a few random problems and it would really be helpful to solve them …
0
votes
0answers
17 views
Using linq how do i remove multiple records from a cross reference table
Hi,
My Database contains 4 tables:
TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more cart item fields)
TABLE XREFCARTITEMPROMOTION (CART_ID, ITEM_ID, PROMOTION_ID)
TA …
2
votes
2answers
21 views
Linq to Entities and SQL Server 2008 FileStream
Backend: SQL Server 2008 database with FileStream enabled
Data Access: Linq to Entities
I have thousands of pdf's that currently reside on a file server. I would like to move the …
0
votes
0answers
15 views
How to relate entities without navigation property mappings
Hi,
I Have Database that contains 4 tables
TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more cart item fields)
TABLE XREFCARTITEMPROMOTION (CART_ID, ITEM_ID, PROMOTI …
2
votes
1answer
32 views
Entity Framework - Include in sub query?
I'm not sure if this has been answered yet, I looked at a couple of questions but I don't think they were quite what I was after.
Let's say I have 3 tables:
Restaurant 1.....M Me …
0
votes
1answer
28 views
Entity Framework - Include in sub query? - Part 2
I'm not sure if this is the right thing to do, I'm sure someone will tell me if it's not.
I asked a question (http://stackoverflow.com/questions/1662760/entity-framework-include-i …
0
votes
1answer
36 views
How to relate entities that are not directly mapped through a navigation property
I have an object that has been populated with the contents of four different related entities. However i have another entity in which i cannot include as part of the query due to …
0
votes
2answers
46 views
Linq to entities: how to do a subquery
Hi there,
How can i do this query with Linq To Entities
SELECT * FROM TableA
WHERE MyID IN
(
SELECT MyID
FROM TableB
)
The thing is that TableB does not exist as an …
0
votes
2answers
49 views
Having troubles loading related entities (Eager Load) with ObjectContext.CreateQuery (Entity Framework and Repositories)
Here's a bunch of things I tried... hopefully you can extrapolate from it what I'm trying to do and what I'm doing wrong. Okay so I'm having problems with loading related entities …
2
votes
3answers
66 views
Does Linq to Entities Cache Queries?
I will be using Linq to Entities. The question that I have is, I will be calling Linq to Entities multiple times. Will Linq to Entities queries be cached will it is called several …
0
votes
2answers
32 views
Linq To Entities question
Hi there,
I have a table called TableA whch has a foreign key from TableB and a one to many relationship to TableB
I want to do:
var v = Context.TableASet
.Incl …
