0
votes
2answers
20 views
Problem getting GUID string value in Linq-To-Entity query
Hi,
I am trying to write a GUID value to a string in a linq select. The code can be seen below (where c.ID is GUID), but I get the following error:
Unable to cast the type 'Syste …
1
vote
3answers
34 views
How can i write Linq2Entities Query with inner joins
How can i get data from these related entities. I want to get these columns only:
Term.Name , related Concept_Term.Weight, related Concept.Id
I wrote the SQL but i dont want to u …
1
vote
2answers
22 views
asp.net mvc: how to create custom binding for models when using LINQ to Entities
I've got a number of tables in my db that share common cols: modified by, modified date, etc. Not every table has these cols. We're using LINQ to Enties to generate the
I'd lik …
1
vote
2answers
56 views
LINQ-to-Entities select clause containing non-EF method calls
I'm having trouble building an Entity Framework LINQ query whose select clause contains method calls to non-EF objects.
The code below is part of an app used to transform data fro …
0
votes
3answers
64 views
asp.net mvc many-to-many one-to-many
Hello, I am new in asp.net MVC, and in Entity Framework to.
I watch on asp.net mvc tutorials, but they are very easy.
I need to write little site, and in my database have one-to-ma …
0
votes
1answer
56 views
How to do paging with Linq to Entities? [closed]
How do you calculate efficiently number of pages using Linq to Entities?
Using sql, it could be like:
SELECT TOP 20
COLUMN_LIST,
COUNT(*) OVER() NO_OF_ROWS
FROM TABLE_NAME …
0
votes
1answer
29 views
Linq to enties, insert foriegn keys
I am using the ADO entity framework for the first time and am not sure of the best way of inserting db recored that contain foreign keys.
this is the code that i am using, I would …
0
votes
1answer
35 views
Passing func as parameter in Linq to Entities and ‘Internal .NET Framework Data Provider error 1025’ error
We have a class called Task:
public partial class Task : EntityObject
{
public EntityCollection<TaskUser> TaskUsers { get {...} set{...} }
}
It has navigation propert …
1
vote
2answers
50 views
Using “cached” LINQ entities
Hi,
i've got the problem that i implemented a WCF-service which is using LINQ entities... To generate the content of the response to a service call, requires a high amount of LINQ …
3
votes
6answers
177 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 …
2
votes
1answer
37 views
Entify Framework Inserts require Select permissions
We use LINQ to Entities to write entries into an Audit database (SQL Server 2008). Since this is a dedicated Audit database, we only insert rows - we never read any rows, update or …
0
votes
2answers
33 views
When selecting an anonymous type with LINQ from EF, is there no way to run a method on an object as you select it?
Let's say I have a method:
bool myMethod(int a)
{
//return a bool
}
So let's say I the following
// assume a has prop1 and prop2 both ints
var mySelection = from a in myContain …
1
vote
2answers
48 views
Linq to entities - searching in EntityCollection navigation properties.
We have classes
public Invoice: EntityObject
{
public EntityCollection<InvoicePosition> Positions { get {...}; set{...}; }
...
}
public InvoicePosition: EntityObjec …
0
votes
2answers
42 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 …
3
votes
6answers
81 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 …
