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.

learn more… | top users | synonyms

3
votes
1answer
11 views

Invalid column name error with EF 4.1 Code First

I've been having a problem with this for about a day now, I've searched and found similar problems with their solutions but haven't been able to fix this. I've seen this done with the Teams example, ...
2
votes
0answers
29 views

Using Contains as 'IN' cluase with LINQ in Entity Framework in Silverlight

I am trying to return a list of items (vwProposedMigrations) where the DeptCode of the vwProposedMigrations is IN a list of depts that the user is authorised to manage. result contains a list of ...
0
votes
1answer
39 views

Entity splitting with optional relation - (EF code first)

I have 2 tables: an Orders table and an OrderActivity table. If no activity has been taken on an order, there will be no record in the OrderActivity table. I currently have the OrderActivity table ...
0
votes
2answers
28 views

Entity Framework Inheritance and Logic

I've been creating a prototype for a modern MUD engine. A MUD is a simple form of simulation and provide a good method in which to test a concept I'm working on. This has led me to a couple of places ...
0
votes
1answer
11 views

How to add to a collection in Entity Framework 4.1

I'm trying to add an object to an IList entity but the runtime throws a 'Object reference not set to an instance of an object.' exception. Here is my model: public class Discussion { [Key] ...
0
votes
0answers
14 views

Issue saving XML as string using Entity Framework

I have converted my object in XML and converted xml to String and saved in database using entity framework 4.1. since I converted that to string its adding some wearied chars in string which is ...
0
votes
3answers
35 views

Utilize the ASP.NET Default Membership

I am working on a system where authentication / authorization is part of the requirements. My ERD for the system is as follows: I haven't fully populated the Entities, but you can probably guess ...
-2
votes
0answers
34 views

How to save XML in SQL Server 2005 table column using Entity Framework 4.1 [closed]

I have do do these 2 things I have an object I converted that to XML now I want to save that XML into a SQL Server 2005 column of type XML then I want to retrieve that XML and convert it back to an ...
1
vote
1answer
68 views

Entity Framework Object Context per request in ASP.NET? [closed]

Is it considered a good practice to use a single ObjectContext per request? I read these objects should be short lived and are not extremely costly to instantiate but does this make the case appealing ...
0
votes
2answers
28 views

LINQ to Entities does not recognize the method 'DataAccessLayer.faturaozellikleri get_Item(Int32)

I have a method that was working but after I used a custom connection string, it's worked... public void ShiftBillNumber(List<faturaozellikleri> shiftBillNumberList,int accrual) { ...
2
votes
1answer
41 views

POCO entity Fluent API versus Data Annotations

I am coding our POCO entities in a Domain project in which I have no references to either EntityFramework or DataAnnotations. A second project, DataAccess, contains the data context and fluent ...
-3
votes
1answer
45 views

When we use Entity Framework, how to use triggers?

When we use Entity Framework, how do we use triggers? When I call .SaveChanges(), the following error occurs An error occurred while updating the entries. See the inner exception for details. ...
0
votes
0answers
23 views

How to perform Entity Splitting with join table

I have the following sample data model: Patient, Address and join table PatientDetail. Is there a way to perform entity splitting with this model? This model is needed because a patient can have ...
0
votes
1answer
36 views

Update and select records in Entity Framework

I have multiple processes accessing the same database table. The table holds "TakenBy" column that is supposed to hold the ID of the taker process. Entity Framework is my data access layer. My ...
1
vote
1answer
71 views

How to define Many-to-Many relationship through Fluent API Entity Framework?

Below is my model: public class TMUrl { //many other properties //only property with type Keyword public List<Keyword> Keywords{get;set;} } public class Keyword { //many other ...
0
votes
0answers
27 views

EF code-first - Strange behavior when calling a stored procedure with nested transactions

Good evening, I am currently calling a stored procedure from my DbContext as follows: result = DataContext.Database.SqlQuery<SubscriptionCreationResult>( "EXEC ...
2
votes
1answer
58 views

Entity framework DBcontext add child row

As I understand, to add a child row, you can either do parent.Children.Add(child); or child.Parents= parent Then you can do myContext.SaveChanges(); Somehow the second solution doesn't do the ...
0
votes
1answer
50 views

Error using foreign keys in entity framework

I used the foreign key After I clicked the delete button runs MessageBox.Show("Error"); Because It is a foreign key After I clicked the delete button I do not want to insert the table Again ...
0
votes
1answer
37 views

Entity Framework Model Property not update properly

I am having below mentioned 2 models. GeoLocation Model : public class GeoLocation { public GeoLocation() { } public int Id { get; set; } public double Latitude { get; set; } ...
-1
votes
0answers
76 views

error An error occurred while updating the entries. See the inner exception for details. for delete record from table inner join in entity framework

i want to delete records from table in entity framework The Table city has a relation with Table ProvincesCity The following error occurs Error:An error occurred while updating the entries. See the ...
1
vote
1answer
40 views

Unable to create a constant value of type 'ABC'. Only primitive types or enumeration types are supported in this context

I have a linq query in mvc4 application it gives me error 'Unable to create a constant value of type 'CMMIS.Domain.tblCustomer'. Only primitive types or enumeration types are supported in this ...
0
votes
0answers
33 views

Unable to access database deployed to localhost IIS7

I have deployed an Asp.net Mvc 4 WebApi on localhost IIS 7, using visual studio 2012 publish method. It was deployed successfuly but whenever I try to fetch the data from database the following error ...
0
votes
1answer
32 views

Submit GridView rows back to database

I have this C# Code: using (ContractorsEntities context = new ContractorsEntities(Properties.Settings.Default.Connection)) { warningBindingSource.DataSource = ...
0
votes
1answer
57 views

Access entity array by index c#

I have a table that represents a matrix: CustType DiscountGroup1 DiscountGroup2 DiscountGroup3 Wholesale 32 10 15 Retail 10 15 0 ...
1
vote
0answers
80 views

.OrderBy in Linq query not always ordering properly

Below is a Linq query I'm using in my ASP MVC 3 controller to try and order the results alphabetically by state code. 99% of the time this works just fine, but I'm finding a couple lists that are ...
1
vote
1answer
38 views

Is it bad design to have access to the UnitOfWork in the Repository?

Background: Entity framework4.1 and MVC4 My setup has model entities, and then a generic repository and then model specific repositories like UserRepository, ProductRepository that inherit from the ...
0
votes
1answer
53 views

Alternative to using String.Join in Linq query

I am trying to use the Entity Framework in my ASP MVC 3 site to bind a Linq query to a GridView datasource. However since I need to pull information from a secondary table for two of the fields I am ...
0
votes
1answer
42 views

Why can I not use the same poco in code first in EF4.1 to project my data?

Consider the following senario: I have a code first model in my project with the Poco object Animal. The animal row has 50 properties and I only want 5 of them in my application. So I will try to ...
0
votes
1answer
95 views

Why default value in sql when we use the entity framework code first is not registered

Why default value in SQL when we use Entity Framework is not registered ? Table code in T-SQL: CREATE TABLE [dbo].[T2]( [ID] [int] IDENTITY(1,1) NOT NULL, [name] [nvarchar](50) COLLATE Arabic_CI_AS ...
0
votes
1answer
47 views

Where using “IS NULL”

Im trying to retrieve a set of records using EF 4.3.1. I need to get all those records that have a NULL value in certain column. I checked the database and many rows are null in that collumn, also ...
0
votes
1answer
62 views

Exception : The provider did not return a ProviderManifestToken string-Entityframework

I have write a method for inserting some data to the db using Entity framework like below which is called as a wcf service bool status=false; MyDataContext dc = new MyDataContext(); ...
1
vote
1answer
76 views

Add attributes to Entity Framework database first generated classes

I am using Entity Framework 4.1 and generating my classes using the database first approach. I have a an EDMX file in my solution. I am trying to add attributes to my classes using the ...
1
vote
1answer
111 views

MVC3/C#/Razor/EF handling data from multiple partial 'create views'

For registering a new customer I have several partials on my view which refer to corresponding tables in my database. Primary keys are identity fields, that's why no IDs on the view. To insert a new ...
0
votes
2answers
121 views

Entity framework mapping when foreign key column name is different

I have a legacy table like this: Country - countryCode (PK, varchar(10), not null) Now I have a new table: Store - store_id - country_code My models: public class Country { [Key] ...
0
votes
0answers
91 views

Entity Framework: Is Table Per Hierarchy the right inheritance pattern for this situation?

Imagine I have a hierarchy of objects I want to store in my Entity Framework 4.1 data store. I am creating them using Code First. They look like this: BasicState has many -> StatefulEntities ...
0
votes
1answer
92 views

error in linq cannot convert from 'System.Collections.Generic.IEnumerable<AnonymousType#1>' to 'System.Linq.IQueryable<AnonymousType#2>

Contain has error: error in linq cannot convert from 'System.Collections.Generic.IEnumerable' to 'System.Linq.IQueryable Why? public class ListQuestionAssessor { public string sum ...
1
vote
1answer
56 views

I have a 1 to many mapping, how can I map back to the parent object?

I have a mapping like: public class Order { public int Id {get;set;} public virtual ICollection<Item> Items {get;set;} } public class Item { public int Id; public int OrderId; } ...
0
votes
0answers
30 views

Code First Migration is not found

I've added new migration by typing Add-Migration MyRockNRollMigration and then I've put all necessary code into methods Up and Down. Next: Update-Database (or even Update-Database -TargetMigration ...
0
votes
1answer
50 views

Equivalent sql code insert/sql in entity framework in code-first

Equivalent below code in entity framework in code-first INSERT INTO TableA (a,b) SELECT a,b FROM TableB WHERE a=10
0
votes
1answer
23 views

Can't get my Entities to respect Referential Integrity of the Domain

Background: I am parsing an XML file (book signing events information), and then attempting to create database records based on the Parsed data via Entity Framework Code First (with the help of Entity ...
1
vote
0answers
57 views

create inner join between field not mapped with a field in database in Entity Framework

How do I create a relationship between fields DecodePersonnelID and PersonnelID Field public partial class MyUser { public int UsersID { get; set; } public string PersonnelID { get; set; } ...
0
votes
1answer
55 views

join diffrent field type in linq

join diffrent field type in linq public partial class Product { public int ID { get; set; } public string CategoryID { get { return Myclass.increse(CategoryID); } set { ...
0
votes
1answer
93 views

How to Reflection on EntityFramework Classes (model first approach)?

It's possible to create instance of classes generated for VisualStudio when use DataBase First ? I mean, I use the t4 templates and the command "Generate Code" using T4 templates for MVC3 Tools ...
0
votes
2answers
62 views

Can't get EF Code First to work on SQL Server Express 2012

I have tried the solutions mentioned in all the existing questions, but none of them work for me. When I run my application (runs with no errors), and go and check the SQLExpress Database (through SQL ...
0
votes
2answers
61 views

custom connection string to the entity framework

How to assign the custom connection string to the entity framework? By default entity framework read the connection string from the web config file or app config file. I want to create a connection ...
1
vote
1answer
22 views

Entity Framework 4.1 T4 Output to IDbset

I would like to have the T4 template created by visual studio output my entities as IDbset rather than DbSet any idea how?
1
vote
1answer
32 views

EF concurrency causing problems with a trigger

In my SQL table (2008), I have a timestamp column called Timestamp. In my .Net project, I have a POCO class with a property public byte[] Timestamp {get; set;} In my configuration code, I have the ...
0
votes
1answer
30 views

How to avoid invalid concurrent modifications in EF 4

I have a 3-tier application: Client application Server application Database server The server uses Entity Framework 4 to read and write data to/from the database. Imagine following situation: ...
0
votes
0answers
96 views

Relationship between POCO classes in Entity Framework, code first

I reimplementing database created automatically by SimpleMembershipProvider. Actually I have a question about 2 tables linking: create table user_profiles ( id int not null identity, /* PK */ ...
2
votes
1answer
235 views

Why does Entity Framework throw “String or binary data would be truncated” exception?

If you take a look at the code below, you'll see that I'm attempting to add the same data to my context in two different ways. One--Method A, which I typically use with no problems--keeps throwing ...

1 2 3 4 5 58