The ADO.NET Entity Framework is a set of Object-Relational-Mapping (ORM) tools for the .NET Framework, since version 3.5 SP1.

learn more… | top users | synonyms (2)

0
votes
0answers
11 views

Change Oracle Entity Framework Provider

I have a program which uses Oracle entity framework provider on visual studio 2008 (32 bit). The provider which I used on VS 2008 is a sample provider which I downloaded from the internet ...
0
votes
1answer
34 views

Combine two records into one and update column

I have the following records in my CartItems table: When I migrate the cart, I'd like to combine the two records into one with the cart id of Test1 and then update the quantity to 2. So it would ...
1
vote
1answer
43 views

Default code generated by my EF model has errors

This is kind of a noob question, and I am actually a bit embarassed to have not been able to figure it out myself , who knew transition from LinqToSQL to EF will be fraught with nuances like this. ...
0
votes
0answers
41 views

Dynamic Stored Procedures in .NET EF

I'm using EF 4 with .NET 4. I have a stored procedure that returns a dynamic result set based on an input parameter. Whats the best way to use EF to call this stored procedure and return the result ...
0
votes
3answers
69 views

MVC Model How to make byte[] nullable?

I'm using ASP.NET MVC with EF code first. In my model I have a property that can be null: public byte[] Avatar { get; set; } However, when I run update-database I get: Cannot insert the ...
0
votes
1answer
24 views

Add value to Many to Many relationship with EF 5 & ASP.NET MVC 4

Using Code First / MVC 4 / EF 5 I have a place object: public class Place { public virtual int PlaceID { get; set; } public virtual ICollection<Tag> Tags { get; set; } ...
0
votes
2answers
22 views

EF6 - Code First - Are property mappings needed?

I have been reading up on code first approach with entity framework. Unfortunately I can't find much documentation than what relates to EF4 on this. But the docs I have read (scott gu's blog on EF4) ...
0
votes
0answers
50 views

EF Record not able to be amended immediately after adding

On my website I am creating a record, then returning a route result using the generated ID. When the method is called again with the correct ID, I query to get the record again and do further ...
0
votes
1answer
25 views

System.NotSupportedException:The entity or complex type Model.APPLICANT cannot be constructed in a LINQ to Entities query

Currently fixing my Codes until this exception occured System.NotSupportedException: The entity or complex type Model.APPLICANT' cannot be constructed in a LINQ to Entities query This is my ...
0
votes
1answer
52 views

Adding data to data bound DataGridView (WinForms, C#)

I have 3 tables: Order (OrderId, columnXY ..) OrderItem (OrderId, ItemId, Quantity) Item (ItemId, Name, Price) The order table is bound to a DataGridView. On selection changed for the order dgv, an ...
0
votes
1answer
27 views

Entity Framework 5 not loading property

I'm working on a EF5 code-first database and it is giving me a lot of trouble on a foreign key. Also sorry if this is already answered somewhere else but I looked at countless of questions on here ...
0
votes
0answers
14 views

Create a new data storage type for entity framework

We're storing our data in quite an unusual form -- a variant of sixth normal form stored in SQL Server. The only really interesting detail here is that sixth normal form can fit in theoretically with ...
2
votes
1answer
86 views

LINQ - Not returning the same value as SQL Server

I have a really weird issue. I have this query: var systemAppEntityViewModelFieldCustom_SecurityByUserList = (from t in coreEntityModel.SystemAppEntityViewModelFieldCustom_SecurityByUser ...
0
votes
0answers
35 views

Using two contexts in one Transaction and error with DTC

In one transation I use two different contexts: using (TransactionScope scope = new TransactionScope()) { using (Entities1 context = new Entities1()) { .... } using (Entities2 ...
0
votes
2answers
22 views

Entity Framework: check if object exists and check if it has an associated object

In a many-to-many relationship between File and Category I want to check if a file exists and if so, if it has any categories (because there's a chance it may not have any) : public bool ...
0
votes
0answers
45 views

Handling n-n relationships in Entity Framework

I have a simple BOM database model and using Model First to map and use it in EF.The problem with it is,i have a N-N table,and i just can not add more than 1 item to it. For example in Kartela ...
-2
votes
2answers
55 views

what is entity framework ? why should i use it ? can i use it without linq? [closed]

I have read some documents about Entity framework, so i came to know that it makes entities like our database(ORM). i tried to go deeper but i don't get satisfactory answer. i want to know why and ...
0
votes
1answer
68 views

Execute decrypt function on LINQ query

If I have the following query where Companies.Name is encrypted: Obviously executing the following query is going to be invalid because we're searching against encrypted names. ...
0
votes
1answer
35 views

Multiple Inheritance Levels Using Entity Framework TPT

Considering the following table schema: I want to use Entity Framework Table-Per-Type (Fluent API) to map to the following class diagram: How can I do this? I have tried doing it like the ...
1
vote
1answer
88 views

LEFT JOIN or RIGHT JOIN using LINQ Entity-Framework

TRYING JOINING USING LINQ What should i use ? LEFT JOIN OR RIGHT JOIN? APPLICANT TABLE PROFILE TABLE APPLICANT_ID|profile_id|Applicant_Name| |profile_id|Applicant_Name ...
0
votes
1answer
17 views

Error while trying to update the database on a migration?

I'm following through an example on a mvc course on pluralsight. I'm getting an error when trying to do a database migration. Here is my class: public class Department { public virtual int Id ...
0
votes
1answer
69 views

Cannot implicitly convert type 'System.Collections.Generic.List<AnonymousType#1>' to 'System.Collections.Generic.IEnumerable<Models>

im having exception at my controller when i add DefaultIfEmpty() statement for me to Right join my datas . . This is my controller: public IEnumerable<APPLICANT> GetApplicant() ...
0
votes
1answer
28 views

Find all items whose collection property contains items in another list

I have an collection of object Foo with an ICollection property containing a list of People objects. public class Foo { public int Id { get; set; } public string Name { get; set; } public ...
-1
votes
2answers
63 views

Entity Framework 5, MVC 4, Code First - Persisting a List<string> in a class

My solution should work well with: ASP.NET MVC 4, EF5, Code First, Visual Studio 2012 Express, SQL Server 2012 Express. I need to store many tags with a place object. In another question it was ...
0
votes
1answer
25 views

Partial load using manual sql query with EF

I'm using EF 5.0 and Code first and need to populate an array of entities using manual sql query. However, I don't need to load the whole entity from db, but only few fields. I don't need tracking ...
0
votes
1answer
43 views

Iterating through two tables/Entities using lambda expression

using lambda expression I am getting a list of records based on date value using Entity Framework, which is working fine. DateTime expDate=DateTime.Now(+2); abcEntities se = new abcEntities(); var ...
0
votes
1answer
15 views

Entity Framework, Function Import with Return Type: None.. returns int?

I've added a Stored Procedure to my Store, which creates a Function Import in my Model, and I've set the Return Type to None, as the Stored Procedure merely does an Insert or Update. Yet, the ...
-2
votes
0answers
26 views

Entity Framework. dbEntity.Refresh() or dbEntity = new Entity()? [closed]

guys. I faced the next problem tonight. I've got two programs, which use the same database at the same time: Asp.net MVC. uses entitymodel of database for CRUD the second one (in winForms) just ...
1
vote
1answer
33 views

EF 4.1 code first with one-to-many relationship creates duplicate foreign keys

I am using entity framework code first. I have 2 entities (Users and Profile) and the relationship between them is one-to-many, that is, one user can only have one profile, but one profile can be ...
0
votes
1answer
45 views

AutoMapper and EF entities - ignoring all relationships

I am using AutoMapper to map DTOs to entities. When creating the maps, I always end up ignoring the relationships of the entities, and that usually result in a long, long list. That is: ...
0
votes
1answer
17 views

Adding values to “many to many ” relationship in entityframework

I have 3 entities in Sqlserver that I am mapping with the wizard of visual Studio The three entities are packages categories and packages_categories,where packages_categories an many to many ...
1
vote
3answers
53 views

EF and WinForms - maintaining a static list of entities

I am using EF 5.0 in a WinForms application. I dispose the DBContext quick. Nevertheless I must maintain a static list of Customer entities , which I populate on startup using a DBContext - again, ...
-3
votes
0answers
23 views

What is the best option to proceed with db structure for Approval process in entity framework? [closed]

What is the best option to proceed with db structure for Approval process in entity framework? Pending table or Master detail table structure? I have a requirement, to handle blogs which need to be ...
0
votes
2answers
39 views

Creating ViewModel that contains parent class properties in ASP.NET MVC

I am trying to understand how to create a ViewModel that contains properties from a class in my domain model as well as properties from a parent class. I want to have a ViewModel that contains all of ...
0
votes
2answers
36 views

How to remove child one to many related records in EF code first database?

Well, I have similar one-to-many related model: public class Parent { public int Id { get; set; } public string Name { get; set; } public ICollection<Child> Children ...
3
votes
1answer
61 views

Why is Entity Framework losing my indexes?

When I use a database initializer like DropCreateDatabaseAlways or MigrateDatabaseToLatestVersion to create my Entity Framework (5.0.0) database, the resulting schema does not include the indexes that ...
0
votes
2answers
52 views

MVC 3 Entity Framework Error - Item has already been added. Key in dictionary

I am making a MVC 3 web application using Entity Framework but I am getting this error. In my data layer I used a class connection helper. Error is followig: Item has already been added. Key in ...
0
votes
1answer
13 views

Transaction using TransactionScope is not rolled back in a multithreaded execution path

I have the following code: Public Async Function Convert(schemaProgress As IProgress(Of ProgressReport), membersProgress As IProgress(Of Boolean), indexProgress As IProgress(Of Boolean)) As Task ...
1
vote
2answers
78 views

asp.net MVC 4, tagging places - best practice (eg Pub, Store, Restaurant)

ASP.NET MVC 4 web app, EF 5, SQL Server 2012 Express, Visual Web Developer 2012 Express, Code First I have a places object - I would like to add multiple tags to each place. Is the best approach a ...
2
votes
2answers
97 views

Passing in a Func to Where and using IQueryable

I am using Entity Framework and am building up a IQueryable<T> IQueryable<Message> query = db.Messages; query = query.OrderByDescending(m => m.Created); query = query.Where(m => ...
0
votes
1answer
25 views

Linq2Sql Equivalent of DataContext.ExecuteMethodCall in Entity Framework

in my linq 2 sql i had a SP with multple resultsets and a code [Function(Name = "GetHomedashboard")] [ResultType(typeof(TopSearch))] [ResultType(typeof(TopVacancy))] public IMultipleResults ...
0
votes
1answer
27 views

ADO.NET DbContext Generator template missing

My ADO.NET DbContext Generator is missing in VS 2012. Only the EF 5.x DbContext Generator appears there. Do I need to install EF 4.1 to get ADO.NET DbContext Generator?
1
vote
1answer
19 views

How to anonymize certain fields using Entity Framework

We have a set of entities that contains data fields that needs to be anonymized to certain users. We have a product database, but the true name of the product should only be visible to certain users. ...
0
votes
1answer
34 views

Entity Data Model not creating all relations

I created an Entity Data Model automatically from my database. There are 3 tables (A, B, C), and 2 foreign keys (A 1-* B and B 1-* C). The model that was created has all three tables, but only the ...
0
votes
2answers
34 views

EF 4.1 code first - How to update/delete many to many join table entries automatically

I have 2 entities, let's say, Trip and Activity. The relationship between them is many to many so a join table is created automatically by EF. Entity Trip attributes: -Id (PK) Generated by database ...
5
votes
2answers
89 views

Entity Framework Generates different queries on different workstations

We have problem on single Developer Machine and a few clients. Single Linq Query Generates two different SQL queries. The problem is in fact that second query has “OUTER APPLY” statement which ...
1
vote
1answer
34 views

EF POCO table splitting: both entities load

Sorry, but I'm mystified by table splitting! I have Product and ProductDetail entities, mapped to table Product. When I load the Products collection, the ProductDetails are loaded too. Could ...
1
vote
1answer
34 views

Join 3 tables in listview ado.net webapplication entity framework

I am new to both ado.net and the entity framework. I am working on a web application with a login, and an administrator panel using ado.net, SQL server and the Entity Framework. In the administrator ...
0
votes
1answer
41 views

Null Object refrence in the acess of the view in ASP MVC and EF

I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005. I am using also Entity Framework and Code First Method. I have a view Index which contains some links to othres views. ...
0
votes
0answers
22 views

Binding SilverLight Treeview From ViewModel Using Entity Framework

I've got a database structure similar to this: Project ProjectID(pk) ProjectName ProjectFile ProjectId FileId(pk) Notes I have to bind a silverlight treeview the Parent should be the ...

1 2 3 4 5 501