0
votes
0answers
37 views
Linq to entities casting error
I am getting this error and I anonymous have collection of Datarows and each item contains two datarows. How to cast this?
Unable to cast object of type …
0
votes
1answer
28 views
Linq to entities order by over wcf
I'd like to expose a method over WCF something like GetEmployees(EmployeeColumn orderby), that returns a list of employees in an order.
I don't really want to create an enum EmployeeColumn that …
5
votes
1answer
25 views
Entity Framework: is there a complete list of supported IQueryable extension methods?
I'm looking for this list for Entity Framework. Ideally, I'd like to have a list of other supported methods (or members - e.g. constructors), e.g. for DateTime type.
1
vote
1answer
35 views
Which ORM tools support this version of Queryable.Select extension method
Do you know an ORM supporting this extension method:
public static IQueryable<TResult> Select<TSource, TResult>(
this IQueryable<TSource> source,
Expression<Func<TSource, …
1
vote
4answers
55 views
Sort child objects while selecting the parent using LINQ-to-Entities
Imagine you've got some Entity Framework entities that look like this (obviously not these specific classes, but the autogenerated ones with all the Entity Framework plumbing; these are just for …
0
votes
1answer
50 views
How should I separate entities methods ?
Good people of SO,
Today I have some serious concerns on my business layer design.
It is based on Entity POCO objects and
I want to add logic to these entities BUT, there are 2 types of logic:
Pure …
0
votes
4answers
52 views
How can I search into database with WPF and Linq-to-entities model
Hello,
I prepare a WPF project, where I want to implement a more complex search. I use LINQ to entities through the ADO.NET Entity model and plan to do the display in WPFToolkit DataGrid.
My search …
-1
votes
1answer
30 views
LINQ to Entity - Join between 3 tables 1 to many -> many to 1
Hey all,
I'm a begginer with LINQ to Entity. I'm trying to select a record to update it with user entries later. Here's my schema
I'm trying to get a prediction record and I just can seem to make …
0
votes
2answers
33 views
Entity Framework: Inserting new entity associated with another entity
I have two tables FilesystemEntries and CacheEntries where there is an association of 0..1 CacheEntry per FilesystemEntry (that is a FilesystemEntry can have a null CacheEntry, but not vice-versa). …
0
votes
1answer
18 views
Difference between LINQ to Entities with and without ObjectResult
I have the following LINQ to Entities query...
var results = from c in context.Contacts
select c;
which works fine in returning a collection of contacts. But I have seen sample code …
0
votes
1answer
20 views
Exceptions and Linq to Entities
I have a tough question to ask so please bier with me.
In this code below, this works because the programmer was interested in projecting only the specific errors caused by the physical data-layer to …
0
votes
1answer
12 views
LINQ to Entities - “Including” a complex object while also grouping
I have a set of tasks that I need to select distinct on (group by in L2E). Those tasks have a referenced property, "Activity" that I need to be loaded so that I can reference the task.Activity …
2
votes
3answers
72 views
Multi-Database Transactional System & ASP.NET MVC
So I have a challenge to build a site that people online can use to interact with organizations.: http://stackoverflow.com/questions/1691058/asp-net-mvc-customer-application
One of the requirements …
1
vote
1answer
25 views
Extension Methods in Linq to entity-expressions
Hi,
If I create an extension method for my entity objects and try to use it in a LINQ-expression I get an error. Is this a limitation and something I cant do or am I missing something?
regards
…
0
votes
1answer
25 views
Read only Search function. Stored Procedures or IQueryable with POCOs and Ef 4.0
We have some search functionality that can return tens of thousands of results from the db although it will only fetch the rows needed to be displayed into e.g. first 10 records. When the next page …
