This tag is for the ADO.NET Entity Framework Community Technical Preview 5, released on December 6, 2010. It is a preview to Entity Framework 4.1, which focuses on "Code-First" development.
21
votes
2answers
751 views
EntityFramework CTP5 DbContext T4 Template “virtual” keyword
The DbContext T4 template that comes with CTP5 does not have association fixup and not all properties are marked as virtual. Does it mean it does not support ChangeTracking when disconnected from ...
17
votes
3answers
2k views
Using mvc-mini-profiler database profiling with Entity Framework Code First
I'm using the mvc-mini-profiler in my project built with ASP.Net MVC 3 and Entity Framework code-first.
Everything works great until I attempt to add database profiling by wrapping the connection in ...
11
votes
1answer
2k views
EF CTP5 - Strongly-Typed Eager Loading - How to Include Nested Navigational Properties?
Attempting to cutover our EF4 solution to EF CTP5, and ran into a problem.
Here's the relevant portion of the model:
The pertinent relationship:
- A single County has many Cities
- A single City ...
8
votes
2answers
2k views
using Guid as PK with EF4 Code First
I have this class and table:
public class Foo
{
public Guid Id {get;set;}
public string Name {get;set;}
}
create table Foo
(
id uniqueidentifier primary KEY DEFAULT (newsequentialid()),
name ...
8
votes
1answer
793 views
Entity Framework CTP5 - Reading Multiple Record Sets From a Stored Procedure
In EF4, this was not easily possible. You either had to degrade to classic ADO.NET (DataReader), use ObjectContext.Translate or use the EFExtensions project.
Has this been implemented off the shelf ...
8
votes
1answer
852 views
Entity Framework 4 - Mapping non-public properties with CTP5 (code first) in a persistence unaware context
I know the question already has a solution (eg. this question) but I really can't afford to attach the mapping logic in the same assembly where the domain (POCO classes) is.
Is there any other way?
...
7
votes
2answers
2k views
in entity framework code first, how to use KeyAttribute on multiple columns
I'm creating a POCO model to use with entity framework code first CTP5. I'm using the decoration to make a property map to a PK column. But how can I define a PK on more then one column, and ...
7
votes
3answers
6k views
How to use DbContext.Database.SqlQuery<TElement>(sql, params) with stored procedure? EF Code First CTP5
I have a stored procedure that has three parameters and I've been trying to use the following to return the results:
context.Database.SqlQuery<myEntityType>("mySpName", param1, param2, param3);
...
6
votes
3answers
454 views
Using Entity Framework Code First CTP5, how do I create a primary key column that are INTs and are not identity columns
Using Entity Framework Code First CTP5, how do I create a primary key column that are INTs and are not identity columns
Preferably not using attributes.
6
votes
3answers
472 views
How does EF4 compare with NHibernate?
Is it any better? I heard the CodeFirst extension but is it ready for primetime. Please share your experience with development, any performance overheads, etc.
6
votes
1answer
3k views
Entity Framework CTP5 - How to Call Stored Procedure?
This may be a simple answer, but i can't see how to execute a stored procedure with EF CTP5.
In Entity Framework 4.0, we did this:
ExecuteFunction("ContainerName.StoredProcName", new ...
6
votes
1answer
1k views
Multi-Level Includes in CodeFirst - EntityFrameWork
It is working code;
IQueryable<Product> productQuery = ctx.Set<Product>().Where(p => p.Id == id).Include"Contexts.AdditionalProperties.Field");
But you know that it could not produce ...
5
votes
2answers
630 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
1k views
Refresh entity instance with DbContext
With EF4 CTP5 DbContext, what is the equivalent of this
public void Refresh(Document instance)
{
_ctx.Refresh(RefreshMode.StoreWins, instance);
}
I've tried this but it doesn't ...
5
votes
2answers
381 views
Entity Framework CTP 5 One to One mapping
I have two tables:
Requirement
RequirementId - PK
Fixture
FixtureId - PK
RequirementId - FK / NULLABLE / Unique Constraint
A Fixture can only have 1 Requirement, no other Fixture should be able ...
5
votes
1answer
302 views
How can we change naming convention of foreign keys in DB in EF Code First CTP5?
I am using Entity framework Code First CTP5 and I am trying to find a way to add a convention to change how foreign keys name are generated. Here is an example:
public class Lead
{
public int Id ...
5
votes
1answer
452 views
Entity Framework CTP5 (Code First) Modeling - lookup tables
Assume the following table structure:
Tables:
**Tasks**
taskID int PK
taskName varchar
**Resources**
resourceID int PK
resourceName varchar
**Assignments**
assignmentID int PK
taskID int FK
...
5
votes
1answer
630 views
UnitOfWork Implementation
Ive been able to implement a little cool unit of work to work with entity framework.
I came up with ..
public class UnitOfWork : IUnitOfWork
{
private Database _database;
private ...
5
votes
4answers
688 views
What is the replacement of Controller.ReadFromRequest in ASP.NET MVC?
I am attempting to update a project from ASP.NET MVC Preview 3 to Preview 5 and it seems that Controller.ReadFromRequest(string key) has been removed from the Controller class. Does anyone know of any ...
4
votes
1answer
122 views
CTP5 vs release 4.1 EF many to many relationship
This code doesn't work. What is wrong? OnModelCreating doesnt't effect any result? Because I can not see "ProductCategories" table in my Database.
public class GoldContext : DbContext
{
...
4
votes
2answers
1k views
Entity Framework Code First: How can I create a One-to-Many AND a One-to-One relationship between two tables?
Here is my Model:
public class Customer
{
public int ID { get; set; }
public int MailingAddressID { get; set; }
public virtual Address MailingAddress { get; set; }
public virtual ...
4
votes
1answer
974 views
Problem with Eager Loading Nested Navigation Based on Abstract Entity (EF CTP5)
I a portion of my EF model that looks like this:
Summary:
Location has many Posts
Post is an abstract class
Discussion derives from Post
Discussions have many Comments
Now, the query i'm trying ...
4
votes
3answers
1k views
EF Code First - Include(x => x.Properties.Entity) a 1 : Many association
Given a EF-Code First CTP5 entity layout like:
public class Person { ... }
which has a collection of:
public class Address { ... }
which has a single association of:
public class Mailbox { ... }
...
4
votes
1answer
1k views
Entity Framework CTP5 Code-First Mapping - Foreign Key in same table
How would I map something like this using the modelBuilder? Where theres a nullable foreign key referencing the same tables primary key
Table: Task
taskID int pk
taskName varchar
parentTaskID int ...
4
votes
1answer
693 views
EF 4 CTP 5: Trouble trying to remove an entity
I have created a model POCO class called Recipe; a corresponding RecipeRepository persists these objects. I am using Code First on top of an existing database.
Every Recipe contains an ...
4
votes
2answers
507 views
EntityFunctions.TruncateTime alternative when using EF CTP5 with Sql Server Compact Edition 4.0
I'm using EF CTP5 code-first with Sql CE 4.0. I am trying to perform a time-insensitive date comparison between two DateTime properties.
As linq to entites cannot parse the DateTime.Date property ...
4
votes
1answer
677 views
Entity Framework 4 CTP 5 Self Referencing Many-to-Many
I have the following scenario in my database. It is a record of Studies and those studies have other studies as prerequisites. In my DB design, it looks like this:
And my code looks something ...
4
votes
2answers
1k views
Generate money type fields using code first EF CTP5
In this blog post: EF4 Code First Control Unicode and Decimal Precision, Scale with Attributes, Dane Morgridge used attributes to control the creation of different types on your database.
...And I ...
4
votes
5answers
2k views
EF CTP5 error: Invalid object name
I followed the example on scottgu's blog about EF code first CTP5 but I get the error that
System.Data.SqlClient.SqlException:
Invalid object name 'dbo.Products'.
this is the code I got.
...
4
votes
4answers
4k views
Circular Reference exception with JSON Serialisation with MVC3 and EF4 CTP5w
I'm having problems with a circular reference when i try and serialise an object returned via EF4 CTP5. Im using the code first approach and simple poco's for my model.
I have added ...
4
votes
1answer
637 views
How to Switch Cascade delete off in a One to Many Relationship with EF CTP5 Fluent API
In Fluent NHibernate you are able to set the cascade settings for a mapping e.g.
public class StoreMap : ClassMap<Store>
{
public StoreMap()
{
Id(x => x.Id);
Map(x => x.Name);
...
3
votes
1answer
177 views
Entity Framework 4.1 - How to “Force” EF To Go To DB Instead of Using Graph?
Here's the scenario, i have a website, which in a single HTTP request (HTTP POST), i need to do the following:
Grab an object (let's say "Tag")
Save some other object (let's say "Question")
Get a ...
3
votes
1answer
305 views
Code first - how can I save an ICollection when I'm not setting the parent object to EntityState.Modified?
If I have the below class:
public class Foo()
{
public int PropertyIWantUpdated {get; set;}
public int PropertyIDontWantUpdated (get; set}
public ICollection<Bar> Bars {get; set;}
}
When ...
3
votes
1answer
349 views
How do I find the source of all the objects that are being tracked for changes in EF CodeFirst CTP5?
I'm having the 'An entity object cannot be referenced by multiple instances of IEntityChangeTracker' problem. After some checking around it seems like I have an object that's being tracked for ...
3
votes
0answers
350 views
EF4 CTP5: DbContext inheritance
I have a hierarchical DbContext structure, where I would like a specialized DbContext with its own DbSets to inherit the DbSets of a BaseDbContext.
While accessing the underlying ObjectContext with ...
3
votes
2answers
428 views
Repository pattern and Navigation properties
I just want know best practice about writing repository methods. Problem is deciding to write repository in which context has no lazy loading. How do you naming your method if it is GetById but it is ...
3
votes
1answer
1k views
EF Code First with many to many self referencing relationship
I am starting out with using the EF Code First with MVC and am a bit stumped with something. I have the following db structure (Sorry but I was not allowed to post an image unfortunately):
Table - ...
3
votes
3answers
212 views
IQueryable<T> cast to IList<SpecificInterface>
Setup
public interface ITable { }
public class Company : ITable {
public int Id { get; set; }
public string Name { get; set; }
}
public class PaginationGridModel {
public ...
3
votes
1answer
478 views
Entity Framework CTP5 Code-First: How do I specify the type of the discrimimator column in Table-Per-Hierarchy Mapping?
This blog post of the ADO.NET team shows in an example how to define Table-Per-Hierarchy Mapping in the Fluent API of Entity Framework Code-First. This is the (slightly simplified) example:
public ...
3
votes
3answers
654 views
Entity Framework: Set Delete Rule with CodeFirst
I am using EF4 CTP 5, CodeFirst.
Please see my classes first:
public class Guest
{
[Key]
public Guid GuestID { get; set; }
public Language PreferredLanguage { get; set; }
...
3
votes
1answer
450 views
Entity Framework CTP5 Code First - Possible to do entity splitting on a non-primary key?
Using EF CTP5, I am trying to do some entity splitting where the entity is constructed from two separate tables. Is it possible to do this splitting if the key on the two tables is not the primary ...
3
votes
1answer
480 views
LINQ to Entities does not recognize the method
I am following this article on MSDN. I ported it to EF Code First.
public interface IUnitOfWork
{
IRepository<Employee> Employees { get; }
IRepository<TimeCard> TimeCards { get; }
...
3
votes
2answers
1k views
EF4 Independent Associations - Why avoid them?
I saw this comment on MSDN (link and link):
"Note that Independent Associations should often be avoided since things like
N-Tier and concurrency becomes more difficult."
I'm new to EF4 and ...
3
votes
3answers
624 views
Entity Framework CTP5 and Ninject as my IOC
Is it possible in Entity Framework CTP5 to construct retrieved persisted entities via an IOC container?
I'm using Ninject and it's tied in fine with MVC, but I need to inject some services into my ...
3
votes
1answer
590 views
Alternative for MapHierarchy() in EF Code first CTP 5
How can I set the following in the new CTP?
modelBuilder.Entity<RequestBase>()
.MapHierarchy()
.Case<RequestBase>(b => new { b.Id, b.Comment, ...
2
votes
1answer
124 views
Why Doesn't The EntityConnection Object Contain the Login Password?
I've got an app that uses EF CTP5.
In this particular situation, i need to degrade to some classic ADO.NET (in order to read multiple result sets in a stored procedure, which EF does not support).
...
2
votes
1answer
392 views
Can't update foreign key reference(navigation property)
I know that it seems a duplicate entry, but I red all the posts related with my problem and I can't find the solution. I'm stuck with this problem about one week. Maybe I have made some design problem ...
2
votes
1answer
1k views
Entity Framework code first ctp 5 using an IDbSet in RepositoryBase class
I want to find out if it makes sense to use the Entity Framework code first ctp 5 IDbSet in a Repository base class .
I am using the Repository Pattern(and would like to follow the persistence ...
2
votes
1answer
701 views
Entity Framework code first TPH where discriminator is greater than 0
I am defining a model in EF4 CTP5 where I need to map an inherited entity only when the value of an id is greater than 0. the code looks like this.
public class Parent
{
public int ID { get; set; ...
2
votes
2answers
798 views
Entity Framework Code First: How can I cast a set of entities returned from the database?
I'm trying to figure out why this isn't working...
DomainModel
public class ModelEntities : DbContext
{
public DbSet<Address> Addresses { get; set; }
}
Controller
public ViewResult ...