Entity Framework

 Pages: 1 | 2
   Next >
Resources by common categories

Rating
 

A LINQ to Entities Starting Point

Posted by GeorgeH on September 13, 2011

LINQ to Entities LINQ to Entities provides Language-Integrated Query (LINQ) support that enables developers to write queries against the Entity Framework... [read more]

Rating
 

New Entity Framework / LINQ blog!

Posted by Maarten Balliauw on December 12, 2008

Just a quick recommendation note: One of my colleagues, Julien Hanssens, has started blogging on his experiences with the Entity Framework and LINQ. Here are s... [read more]

Rating

Creating dynamic queries with entity framework

Posted by Programmer's Goodies on November 1, 2011

I would like to know what is the best way of creating dynamic queries with entity framework and linq. I want to create a service that has many parameters for so... [read more]

Rating

entity framework, mysql and IQueryable

Posted by Programmer's Goodies on October 22, 2011

I’m using Entity Framework with MySQL and I can’t get the right query execution. I’m trying to have one point for accessing a type of object. I.e. Address... [read more]

Rating

WebCast on LINQ, the ADO.NET Entity Framework and SQL Server 2008

Posted by David Sceppa on October 23, 2007

Last month I delivered a WebCast that covered the new data access features coming in the next wave of developer technologies, namely LINQ (including LINQ to Dat... [read more]

Rating

Entity Framework 4.1. Most efficient way to get multiple entities by primary key?

Posted by Programmer's Goodies on November 14, 2011

What’s the most efficient way to select multiple entities by primary key? public IEnumerable<Models.Image> GetImagesById(IEnumerable<int> ids) { /... [read more]

Rating

linq: T-sql MERGE-like function (Entity framework)

Posted by Programmer's Goodies on September 27, 2011

Is there exists T-Sql – like function MERGE for .NET Entity framework 4 ? No there no such built-in functionality – you must build your own. Very common is ... [read more]

Rating

LINQ Entity Framework - COUNT AND QUERY

Posted by Programmer's Goodies on November 6, 2011

edmx file: OrderData: ORDERID SHIPMENT DRIVER_ID RECEIVE_NAME we need to build a table and print for each DRIVER_ID first column:DRIVER_ID second column: how ma... [read more]

Rating

Wrong query generated with entity framework

Posted by Programmer's Goodies on November 1, 2011

I need to know what am I doing wrong, because the generated query doesn’t match with the attributes of the data base table and I think that my class was well ... [read more]

Rating

linq to entity framework: use dictionary in query

Posted by Programmer's Goodies on October 4, 2011

I have: Dictionary<int, List<int>> dict = new ... var a = SomeEntity.Where(f => dict[f.key].Contains(f.someValue)) this produces error LINQ to En... [read more]

Rating

Entity Framework LINQ projection into custom type results in missing data

Posted by Programmer's Goodies on August 30, 2011

I have a many to many relationship between Contractors and SafetyCouncils. They are joined by a bridge table ContractorsSafetyCouncils which consists of Contrac... [read more]

Rating

LINQ Projection in Entity Framework

Posted by Programmer's Goodies on October 13, 2011

I posted a couple of questions about filtering in an eager loading query, and I guess the EF does not support filtering inside of the Include statement, so I ca... [read more]

Rating

Entity Framework Complex LINQ Support

Posted by Programmer's Goodies on August 25, 2011

I know that Entity Framework has some LINQ support problems (at least in comparison to its predecessor LINQ to SQL)…and usually I’m able to find a creative ... [read more]

Rating

nested where query in Entity Framework

Posted by Programmer's Goodies on November 7, 2011

i have a class like this public class Survey { public Survey() { SurveyResponses=new List<SurveyResponse>(); } public Guid SurveyId { get; set; } public s... [read more]

Rating

VB.NET Entity Framework issue with WHERE clause and Boolean values

Posted by Programmer's Goodies on October 18, 2011

I’m pretty new to MVC and the Entity Framework, but I’m sure this should be straight forward. I’ve got a class with a boolean “Active” flag. I then ha... [read more]

 Pages: 1 | 2
   Next >