Top "Entity-framework-4" questions

A tag for ADO.

Entity Framework/SQL2008 - How to Automatically Update LastModified fields for Entities?

If i have the following entity: public class PocoWithDates { public string PocoName { get; set; } public DateTime CreatedOn { get; set; } public …

c# .net sql-server-2008 entity-framework-4 datetime-generation
View isolation level for a query in mysql

How do I determine the isolation level in use for a given query? After a query is executed (by a 3…

mysql entity-framework-4 locking isolation-level
Unique keys in Entity Framework 4

An existing DB schema has unique, non-primary, keys, and some foreign keys that rely on them. Is it possible to …

entity-framework entity-framework-4 unique-key
EF ICollection Vs List Vs IEnumerable Vs IQueryable

so, my EF model has relationships and according to what I have seen in examples, those relationships should be done …

c# entity-framework entity-framework-4 entity-framework-4.1
Using sql date data type and EF4

I have a table w/ a sql date data type. When I look at the EDM markup, the storage element …

entity-framework sql-server-2008 entity-framework-4
How map objects to a view with EF 4 code first?

How can you map an entity to a database view with EF 4 code first? Is there a way to do …

.net entity-framework entity-framework-4 ef4-code-only
Why re-initiate the DbContext when using the Entity Framework?

I don't know if there is a better way to use the DbContext because it is not recommended to set …

c# .net wcf entity-framework-4 dbcontext
Is it possible to remove child from collection and resolve issues on SaveChanges?

We are using Entity Framework Code First with Foreign Key relationships. We investigating on ways on handling removing objects from …

entity-framework entity-framework-4 persistence repository-pattern
EF 4.1 - Model Relationships

I'm trying to create a quick ASP.NET MVC 3 application using the RC version of EF 4.1. I have two models: …

asp.net-mvc-3 entity-framework-4 entity-relationship ef-code-first entity-framework-4.1