Questions specific to version 4.3 of the ADO.NET Entity Framework, a feature of the .NET Framework 3.5 SP1 and higher.

learn more… | top users | synonyms

11
votes
2answers
85 views

code first auto gen proxy class navigation and collection properties are null

For all of my POCOs, the navigation and collection properties are all null. Let me provide some background. I have a complex code first project using EF 4.3.1. Proxy generation was disabled. ...
0
votes
1answer
32 views

EF 4.3 fluent mapping Intermediate table TPT

I have the following legacy table structure (simplified for this post) The following is my feeble attempt at configuring the Entity: public class EntityConfiguration : ...
1
vote
1answer
53 views

How to query based on properties of a model?

For sake of brevity, assume I have a model named Participants like public class Participant() { public int? ID {get; set;} public string Name {get; set;} public DateTime JoinDate {get; ...
0
votes
1answer
34 views

EF 4.3 Code First Migrations - Uncompress __MigrationHistory Model

How can I uncompress/read the compressed models stored in the EF 4.3 Code First Migrations __MigrationHistory table? I found a hint in this comment, that I can uncompress it using zip/gzip, but I ...
3
votes
1answer
197 views

How to create initializer to create and migrate mysql database?

I have been learning how to use EF for a week or so now and am stuck on the issue of creating/updating my database. I am able to create an initializer to create the database if it is not there: ...
1
vote
0answers
68 views

Dynamic query creation (dynamic search engine)

We are using ASP.NET MVC3, EF 4.3.1, DynamicQuery library We are currently developping a dynamic search engine that could perform search query agains multiple database. So we have an interface that ...
0
votes
1answer
88 views

Entity Framework enumerating SqlQuery result

I have strange error while I am trying to view results of SqlQuery: var sql = "SELECT @someParam"; var someParamSqlParameter = new SqlParameter("someParam", "Some Value"); var result = ...
0
votes
2answers
63 views

Mixing fluent and data annotation configuration in EF code first

While we mostly use fluent configuration for our code-first POCOs, we have found it useful to use data annotations for things like the table name, PKs, etc. since it makes it easier for non-EF ...
1
vote
0answers
27 views

SelectMany equivalent in EntitySQL

I'm battling with an E-SQL query where one of my fields in the a list. My problem is how do I get this to be flattened. My query is as below: select value d from (select ( select value tagEntry ...
0
votes
0answers
44 views

DbDomainService not creating client proxies

I have read and implemented the seemingly good advice in this post here which also references an (also) excellent article in Code Project here However, I'm quite stuck. The client proxies will not ...
0
votes
0answers
113 views

T4 template for EF 4.x, ObjectContext, EntityObject, database-first approach and EDMX

I'm upgrading an existing ASP.NET 3.5 webforms app to .NET 4.0 (or possibly 4.5 - not sure yet) and I'd like to upgrade the EF version, too. As a first step, I'd like keep my visual EDMX designer and ...
1
vote
2answers
227 views

How to add entities to DbContext with recursive relationships while avoiding duplicate additions?

I'm using Entity Framework 4.4 and I have a One-To-Many relationship model like this: class Item { public string keyPart1 { get; set; } public string keyPart2 { get; set; } public virtual ...
0
votes
1answer
61 views

Whether to use virtual type with a foreign key using POCO?

I am new to Entity Framework and wondering why my foreign key property(s) has to be "virtual" even though data can be loaded without non virtual foreign key. lets say i have two class. both have ...
0
votes
1answer
142 views

Entity framework GetDatabaseValues() throw NullReferenceException

Object code : public class ParticipatingService { [Key] public int Id { get; set; } public int OptimisticVersion { get; set; } [DisplayName("Receiver site")] public int? ...
0
votes
1answer
298 views

Entity Framework Update Database On Model Change

I am currently using auto-migrations with the following powershell console commands: add-migration update-database I would like to know if there is an option to update the database automatically if ...
0
votes
0answers
22 views

EntityFramework mapping issue

I am getting the following error and can't figure out how to resolve it in the edmx designer mapping. I desperately need some help here... Error 4 Error 3003: Problem in mapping fragments ...
1
vote
1answer
43 views

LINQ Design time compile error

Can someone please inform me what the correct syntax is for the below query? I get a design time compile error beginning at the "equals" keyword at the following spot: && a.applicationid ...
1
vote
1answer
53 views

Extract model information from Entity Framework 4.3 - 5

I want to implement several extensions for Entity framework. Let met take this one as an example. void InsertOrUpdate<T, TUpdateFields, TInsertFields, TKey>( this DbContext context, ...
1
vote
0answers
145 views

Entity framework Code First and Fluent API have a difficulty with using type decimal?

I need help! When I read a decimal value of the DB it returns a different value for C#. For example: In DataBase the value is 0.0000 and in C# code the value read is 0.1200. I need to know what is ...
0
votes
1answer
142 views

Accessing data in a ViewModel

I have the following entity framework code snippet which has a "Groups" table and a child "ApplicationsGroupsLK" table that contains an ApplicationID field that I need. IEnumerable<Groups> ...
0
votes
1answer
89 views

Error consuming a self-referencing entity using Entity Framework 5 (EF5) from a data service

I have a WCF data service that exposes my EF5 entity model. This particular model has two self-referencing columns. Below is the model. public class Chunk { [Key] public int Id { get; set; ...
0
votes
3answers
121 views

Linq & Entityframework, ISNull and getting a single value from a join

I'm trying to replicate the following SQL query in linq: Select l.*, ISNULL( i.InterestPercentage,0) as InterestPercentage FROM properties l LEFT JOIN interest i on i.ListingKey = ...
1
vote
0answers
41 views

check if a property is ignored by EntityFramework

Using EntityFramework 4.3 w/POCOs. how can I check if a property on a model is ignored or not. In my DBContext Class Hierarchy I am ignoring a property by modelBuilder.Entity<EClass>().Ignore ...
0
votes
1answer
35 views

Problems with EF 4.3 when deployed

I have EF4.3.1 installed on my local machine. I created a new web application project and added the framework. I then created a database/model etc. The framework is split over 2 projects 1 DAL, 1 ...
3
votes
1answer
404 views

Entity Framework - Is there a way to automatically eager-load child entities without Include()?

Is there a way to decorate your POCO classes to automatically eager-load child entities without having to use Include() every time you load them? Say I have a Class Car, with Complex-typed ...
0
votes
1answer
351 views

Entity Framework defaultconnectionfactory

I've recently created a new web project using entity framework 4.3. I'm using database first design. Entity Framework added this section to my web.config, which is giving some informational error ...
0
votes
0answers
214 views

Updating multiple tables in Entity Framework

I'm using Entity Framework 4.3, using database first. I've created a small database and a model from it, shown below: An Applicant has multiple Applications and multiple ContactPermissions. An ...
0
votes
1answer
355 views

Entity Framework datetime vs SQL Server date

I'm using Entity Framework 4.3. In my SQL Server 2008 db, I have some dates stored as dates rather than datetime. I need to retrieve data using the date field, here a test code sample: public ...
1
vote
1answer
73 views

How to implement TPH mapping with Entity Framework attributes only

I need to map a legacy db table to a polymorphic hierarchy using Entity Framework Code First. Unfortunately, I have some ridiculous constraints, and I'm not sure if it is possible. These constraints ...
0
votes
1answer
128 views

EF 4.3 - Update entity and sub entities

I have an entity Order with a sub entity OrderDetail. I want to update the Order and add a new OrderDetail. How should i do this? I've tried setting the state of the Order to modified but i get this ...
1
vote
0answers
250 views

Many to many relationship with JUNCTION TABLE in Entity Framework first code

This is my first experience using ASP.NET MVC4 and ENTITY FRAMEWORK FIRST CODE. I've got three tables. Just one of them is working as the JUCTION TABLE called TestObjectivesLink. The problem is when ...
0
votes
2answers
71 views

Performance consideration for updating 100 records

I am developing an application which has a SCQL CE 4.0 database and I used EF 4.3.1 as its ORM. There's a requirement that I have to load 100 records from an XML file check them against the database ...
0
votes
1answer
170 views

“ambiguous” mapping from CLR to EDM

I understand that Code First used to have a problem (or maybe still does) when you have two classes with the same name in different namespaces. I have found numerous posts about this. I have something ...
1
vote
1answer
205 views

How to secure MVC4 area for admins from custom SQL “AdminUsers” table

I've seen a number of examples on securing an MVC application with tokens, roleprovider and membershipprovider but none quite fit my scenario. Here's my setup.. VS2012 linked to SQL 2008 R2 using ...
0
votes
1answer
220 views

DbContext usage and property values

First off, let's start by saying I'm a rookie. That being said, I am building a web app in C# using MVC3 w/ EF4.3.1 using a db first approach. During the log on process, I want to set some session ...
2
votes
1answer
274 views

EntityFramework anonymous composite key property name conflict

I'm using EntityFramework 5 (or 4.3 for .Net Framework 4.0) In my DbContext object I have already set the correct DbSets and the objects contain proper references to each other. This is not new for ...
0
votes
2answers
57 views

Entity Framework get entity via variable

I have a listbox populated with table names. I want to be able to click a row in the listbox and return all records from that table and bind to a datagridview. Using good old fashioned SQL this is a ...
0
votes
1answer
113 views

Entity Framework: Update data with Case Statement

Imagine I have a SQL table with the following columns and values: +----+---------+------------+---------+------------+ | ID | Status1 | Condition1 | Status2 | Condition2 | ...
0
votes
1answer
107 views

Conditional Seed with entity framework migrations

For a while I've been trying to find a solution as to how I could use the seed method in the migration configuration without fear of updated data being overwritten next time the seed method is run. ...
0
votes
0answers
45 views

ObjectStateEntry has the State “Added” whereas the respective entity is “Unchanged”?

We use EF5 for user management and have a simple one-to-many relation between Users and Partners, whereas both classes are self-tracking entity classes. While adding new users to the database we ...
0
votes
1answer
401 views

Entity Framework CodeFirst KeyNotFoundException in MemberDomainMap

Trying to run down an error in my EF datacontext implementation that is yielding a fairly cryptic error. Test Name: Nodes_can_be_saved Test FullName: ...
1
vote
2answers
112 views

How to refresh model from database selecting just one table using Entity Framework 4.3

My question is similar to this one but using Entity Framework 4.3. Is it possible to refresh only one entity in entity framework [in any way]? We are a big team working on a big database and ...
0
votes
1answer
75 views

EntityFramework extend base model in different DLL

I have a DLL with a base model using code first EF 4.3. What i want is to extend certain models in that dll with additional fields. for example in BaseModel.DLL namespace BaseModel { public ...
1
vote
2answers
337 views

Database migration with Entity Framework

I have strange result in database (SQL Server 2008)-. I work on a ASP.NET MVC 3 project with Entity Framework, and I use database migrations. When I modify the schema of my database, and in ...
1
vote
1answer
262 views

TransactionScope promoting to MSDTC although I am using the same connection string

I have two repositories that point to the same SQL Server 2008 R2 (10.50.2550.0) database. One repository is based on Entity Framework, the other uses regular SqlConnection. I need to perform an ...
2
votes
0answers
59 views

Entity Frameowork Code First Concurreny Control

There I’m using the EF code first to persist the data by following the sequence: filter => remove => add, run the attached sample(two threads run conrrrently), sometime I noticed there was no ...
6
votes
1answer
386 views

EF 4.3 Code First: Table per Type (TPT) with Composite Primary Key and Foreign Key

So I'm trying to use Code First with Fluent to map a base class with one derived type where the tables schema is a Table-per-Type arrangement. Also, the derived type has a many-to-one relationship ...
0
votes
2answers
207 views

EF Code First IDbSet<TEntity>.Attach() Conflicting changes to the role _ of the relationship _ have been detected

I have the following code: using (var db = new SourceLogContext()) { db.LogEntries.Attach(this); db.Entry(this).Collection(c => c.ChangedFiles).Load(); } And I'm getting the following ...
0
votes
1answer
227 views

Defining foreign key in EF 4.3.1 Code first using TPH

I have created three different classes and one base class which store different types of addresses. Base class is postal address which has relation to User (to whom is current address attached) and ...
1
vote
1answer
260 views

Entity Framework Code First: Querying many to many navigation properties without loading into memory

I would like to know the best way to query a many to many relationship without first loading all of the relationship objects into memory. For example, Category and Article have a many to many ...

1 2 3 4 5 8