This tag is for the ADO.NET Entity Framework 4.1, the first release of EF to ship separately from the .NET framework. It builds upon the core Entity Framework included in .NET 4.0 and was released to the public in March 2011.
5
votes
2answers
2k views
Can I use Data Annotations to perform a Cascade Delete with Entity Framework 4.1 RC?
When using data annotations with EF4.1 RC is there an annotation to cause cascade deletes?
public class Category
{
public int Id { get; set; }
[Required]
public string Name { get; set; }
...
5
votes
2answers
1k views
EF 4.1 RC Many to many relationship in EF CF
I have two entities with many to many relationship like this:
class author
{
public int AuthorID{get;set;}
public string Name{get;set;}
public virtual ICollection<book> books{get;set;}
}
...
5
votes
1answer
1k views
EF 4.1 code-first SQL ce 4.0 update collection exception
I'm using EF 4.1 code first with SQL ce 4.0
I have two classes
public class Customer
{
public int ID { get; set; }
public string CompanyName { get; set; }
public ...
5
votes
3answers
874 views
EF4.1 POCO: Why should I use ICollection
In nearly all examples of POCO classes created for Entity Framework 4.1 collections are defined using the ICollection interface:
public class TravelTicket
{
public virtual int Id { get; set; }
...
5
votes
4answers
1k views
Entity Framework, application layers and separation of concerns
I'm using the Entity Framework 4.1 and ASP.Net MVC 3 for my application. MVC provides the presentation layer, an intermediate library provides the business logic and the Entity Framework sort of acts ...
5
votes
2answers
2k views
Entity Framework Code-First - Defining relationships with MembershipUser
I'm trying to understand the best way to define my POCO classes to be able to use Entity Framework code-first feature.
I want to define some foreign key relations in my classes, between the user and ...
5
votes
1answer
2k views
EF (Entity Framework) 4.3 Migration tool does not work on EF 4.1 DB
I want to modify one DB which was developed with EF 4.1 (Code First). I upgraded the project into EF 4.3 and follow this steps:
...
5
votes
4answers
2k views
Entity Framework 4.1 - Override Entity (DBSet) with Filter
I'm trying to do something which should be relatively easy, but i just dont know how to construct it.
I have a Generated Entity which I'd like to override by adding a Linq Where statement.
Herewith ...
5
votes
1answer
1k views
Better way to query a page of data and get total count in entity framework 4.1?
Currently when I need to run a query that will be used w/ paging I do it something like this:
//Setup query (Typically much more complex)
var q = ctx.People.Where(p=>p.Name.StartsWith("A"));
...
5
votes
2answers
2k views
entity framework code first and database user
We're running into a small problem deploying a web application to another environment.
We created the application's db using Entity Framework Code First approach (db automatic created from Model).
In ...
5
votes
3answers
3k views
EF 4.1 Mapping Problem
I have a class that have a relationship with itself:
public class Person
{
public long ID { get; set; }
public string Name { get; set; }
public virtual Person Mother { get; set; }
...
5
votes
2answers
5k views
Execute StoredProcedure in CodeFirst 4.1
I understand stored procedures mapping is not supported by my understanding is that I should be able to call stored procedures.
I have quite a few complex stored procedures and with the designer I ...
5
votes
1answer
1k views
Entity Framework CodeFirst table pluralization
I'm using CodeFirst of EF with a well defined Database.
My Database has a table named 'Centros' (Portuguese word) and i manage to find that EF tries to pluralize my entities to get a 'Centroes' witch ...
5
votes
3answers
3k views
Implementing one-to-zero-or-one relation in SQL Server
I'm using Entity Framework 4.1 database first approach. I've used legacy database. In my edmx file which create entity classes based on tables in the legacy database, there is a one-to-zero-or-one ...
5
votes
2answers
2k views
Design Pattern to use with Entity Framework Code First
I am working on creating a Technical Design Document for my new project that is being developed using Entity Framework 4.1 Code First.
I want my DAL to be to be loosely coupled, easily testable and ...
5
votes
2answers
1k views
Entity Framework Complex Type Custom Validation, Stopping Validation Recursion
We are using complex types to manage our translatable fields like this:
[ComplexType]
public class Translated
{
[Required]
public string NL { get; set; }
[Required]
public string EN ...
5
votes
1answer
992 views
EF CF Configure many-to-many mapping manually
I have existing database. At the moment I am trying to map my new Entity objects to that DB with entity framework code first. Below is the User class which has a friends collection. As you can see ...
5
votes
2answers
1k views
Best Practices for Lookup Tables in EF Code-First
I'm doing my first project with EF and I'm planning to go the code-first model. I'm trying to find a bit of guidance about handling a fairly classic "lookup table" scenario.
I'm dealing with a pretty ...
5
votes
2answers
485 views
View Model Patterns and usage in ASP.NET MVC3 (Also, using EF 4.1)
I have been searching for an answer to this question for days and it is driving me insane. Currently I am working on a project using ASP.NET MVC 3 and am trying to utilize a ViewModel per controller ...
5
votes
2answers
5k views
EF 4.1 RC Code First - Mapping to existing database & specifying foreign key name
I have two classes. A Company has a County set against it:
public class Company
{
public int Id { get; set; }
public string CompanyName { get; set; }
public Country HomeCountry { get; ...
5
votes
2answers
810 views
Keep Database Content On Model Change
Using the code-first approach available in the new 4.1 RC.
Is there any way to persist the current data stored in a database when the mode changes? The database is created by the entity framework, ...
5
votes
1answer
660 views
Entity Framework foreign keys to non-primary key fields
Is it possible for Entity Framework 4.0 to have an association/navigation property based off of a foreign key to a non-primary key field (it has a unique constraint).
5
votes
2answers
2k views
How Do I Disable Lazy Loading, Entity Framework 4.1 using Code Migrations Configuration
This is the code im using to configure the database:
internal sealed class Configuration : DbMigrationsConfiguration<DataStore>
{
public Configuration()
{
...
5
votes
1answer
701 views
How to implement datcontext per request/thread using factory pattern
Using this sample project as a guideline, I am setting up a new project. My project will follow the same basic architecture, only in addition to an mvc project, I will also have a wcf web service ...
5
votes
1answer
978 views
Entity Framework Code First IQueryable
I am using Entity Framework Code First and ran into a small road block. I have a class "Person" defined as such:
public class Person
{
public Guid Id { get; set; }
public virtual ...
5
votes
4answers
5k views
How do I save a child entity in EntityFramework 4?
I have a 1-1 relationship between Orders and Contact. i.e. Contact.OrderId references Orders and is also a PK.
So I have an existing Order and I add a new Contact to it like so...
order.Contact ...
5
votes
2answers
632 views
Is it possible to generate db sql script with Ef4 CodeFirst on build?
On build, I want to automatically create a sql script to generate a fresh database. I plan to use this script so I have can create a master database I can compare with the production database, to ...
5
votes
2answers
410 views
DbContext throws exception on query when accessed through interface
I have created an interface that my DbContext class implements, this enables me to create a fake db context for unit testing. This works well for all my LINQ queries so far but one, where I get the ...
5
votes
2answers
2k views
EF 4.1: Removing child object from collection does not delete it - why?
I have a some error :
EF 4: Removing child object from collection does not delete it - why?
when i remove a child from the parent that the child is deleted when i call SaveChanges(), it gives the ...
5
votes
1answer
303 views
literal or constant as part of composite key in EF code first
I am relatively new to the Code First approach to Entity Framework. I have used the Database First approach for a while now, but the Code First seems to be a better fit for the application I am ...
5
votes
1answer
139 views
Entity Framework 4.1 Ghost Columns
I am currently having some issues with EF4.1. The generation of the the SQL doesn't seem to match what I expect to be generated based on my classes. I have the following classes (This is just a ...
5
votes
2answers
1k views
ASP.NET MVC with EF 4.1 Navigation properties
After days studying EF to understand (kinda..) how it works, I finally realized that I might have a big problem.
Imagine that I have two entities: Pais and UF. The relationship between them is Pais ...
5
votes
1answer
607 views
Code first TPT and cascade on delete
I'm using EF4.1 with Code first and TPT (Table per Type) inheritance. I have a structure like this
public class Customer
{
public virtual ICollection<Product> Products {get; set;}
}
...
5
votes
1answer
1k views
Optimize SQL generated by LINQ Query in Entity Framework 4.1 with one-to-many associations
I'm having some problems with the Sql query generated by LINQ,
Since my environment is quite big, I did a simple example that reflects my problem.
This is my model:
public class ClassA
{
public ...
5
votes
2answers
690 views
Entity Framework UPDATE Operation - Why is child record updated first?
Background: i have a 1 to 0..1 relationship between User and UserSettings.
The important part of the model is as follows:
public class User
{
public int UserId { get; set; }
public string Name ...
5
votes
1answer
595 views
Stop EF Database Initialization for DefaultMembershipProvider
Team, I have an ASP.NET MVC application that I'm deploying. When I deploy it the application works fine, but when I call Membership.CreateUser it ends up trying to create the database even though it ...
5
votes
2answers
662 views
MVC3/Razor Add Controller “Get-PrimaryKey” is failing to find the Primary Key
I've created an Entity Framework Model based on an existing database. The Entity Framework is using the ADO.NET DbContext Generator.
I've also created a MVC3/Razor project that is using the DLL from ...
5
votes
2answers
2k views
How to perform CRUD with Entity Framework Code-First?
I am having a really hard time updating and deleting many to many relationships with EF Code-first.
I have a fairly simple Model:
public class Issue
{
[Key]
public int ...
5
votes
2answers
135 views
Should I keep foreign keys in sync with references when using POCOs
I see a lot of examples on using EF code first with POCOs that show something like this:
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public ...
5
votes
2answers
5k views
EF 4.1 SaveChanges not updating navigation or reference properties
I'm using code first and can add records without a problem. The database is created properly and is seeded without any problems. But calling SaveChanges() in my Edit action only updates the entity, ...
4
votes
2answers
394 views
Any way with Entity Framework Code First to get nice picture of class structure?
I'm use to having tools that give me a nice detailed view of my data relationships. Anyway of doing this with code-first? Below is the kind of diagram I'm looking for.
4
votes
1answer
6k views
Executing stored procedures from a DbContext
I have two simple stored procedures in SqlServer:
SetData(@id int, @data varchar(10))
GetData(@id int).
GetData currently returns a single-row, single-column result set, but I could change it to ...
4
votes
3answers
2k views
How should I return an int from a stored procedure in entity framework 4.1?
I am using Entity Framework 4.1 and do sometimes need to call stored procedures. Some of these return ints as return values. For instance
CREATE PROCEDURE ...
...
INSERT INTO ...
SELECT @@Identity
...
4
votes
3answers
3k views
Update a single property of a record in Entity Framework Code First
How can I update a single property of a record without retrieving it first?
I'm asking in the context of EF Code First 4.1
Says I have a class User, mapping to table Users in Database:
class User
{
...
4
votes
1answer
536 views
How to select just some fields from a table in EF
I have a table with 9 columns in database and I want to be able to load only some fields of it if I need.
How can I do this with Entity Framework 4 please?
e.g. My table has these fields:
ID, ...
4
votes
3answers
3k views
How to get the Primary Key(s) in Entity Framework 4.1, i.e. using DbContext
The answers I'm seeing here are for ObjectContext. Is there a property to determine an entity's primary key names when using DbContext?
Ah.. one of those times that I wish Entity Framework is open ...
4
votes
2answers
4k views
Best way to handle concurrency with entity framework
I am using entity framework 4.1.What is the best way to handle concurrency with entity framework. Is there inbuilt functionality to handle it in entity framework?
Can I do without adding extra column ...
4
votes
4answers
541 views
Entity Framework 4.1 query takes too long (5 seconds) to complete
I have DbContext (called "MyContext") with about 100 DbSets within it.
Among the domain classes, I have a Document class with 10 direct subclasses (like PurchaseOrder, RequestForQuotation etc).
The ...
4
votes
1answer
3k views
Only initializers, entity members, and entity navigation properties are supported. (ASP.NET MVC and Entity Framework)
I am stuck in somewhere on my ASP.NET MVC 3 app. here is the error I am getting :
The specified type member 'AccommPropertyTags' is not supported in
LINQ to Entities. Only initializers, entity ...
4
votes
2answers
1k views
On Insert / Update logic in EF code first
I would like to add some logic to the insert and update events of some EF objects.
I have a MVC application with category object which has a property which is a slugified version of the name property. ...