The ADO.NET Entity Framework is a set of Object-Relational-Mapping (ORM) tools for the .NET Framework, since version 3.5 SP1.
0
votes
1answer
38 views
Performance in ENTITY FRAMEWORK
Sometimes when I'm writing queries using LINQ and if I use it inside of a loop. It turns so slow the performance.
var query1 = from c in db.Classes
where ...
0
votes
2answers
19 views
Option 1:1 mapping, main entity doesn't have FK in it
I am using entity framework 4, mvc4 and code first.
I'm struggling with creating an option 1:1 mapping, where the main entity that has the optional 1:1 mapping doesn't have the FK in it:
public ...
0
votes
0answers
21 views
How to incorporate user role updates in a unit of work using EntityFramework and SimpleMembership
I have a repository class that looks like this:
public class UserRepository : RepositoryBase<UserProfile>, IUserRepository
{
public UserRepository(IUnitOfWork unitOfWork)
: ...
0
votes
2answers
34 views
Entity Framework: search for database entries with null fields
I have the following Model:
public class FactCache
{
public int ID { get; set; }
public DateTime MonthDate { get; set; }
public string AttributeKey { get; set; }
public decimal ...
1
vote
1answer
21 views
EF anonymous object query returns null collections instead of empty ones
I'm using this trick to perform conditional Include's with EF. http://blogs.msdn.com/b/alexj/archive/2009/10/13/tip-37-how-to-do-a-conditional-include.aspx
The problem I'm having is that any ...
1
vote
1answer
39 views
How to map result from stored procedure to object
I'm using EF for fetching data from stored procedure in MS SQL. Stored procedure is returning table. (columns have same names as properties in my object)
List<MyObject> result =
...
0
votes
1answer
46 views
Reflection type load exception when adding a class to ptoject
Im currently developing a c# wpf app, it works fine until i add a vhd c++ wrapper class to my project, witch is pritty large so im not posting it here and it works fine by itself. In my project when ...
0
votes
1answer
18 views
EF 5 - Get Migrations Scaffold to live in a seperate project
I don't particularly want the Entity Framework migrations scaffold code in my Data Access project. I've got a Console app that I manage database scripts with - so I'd like it live in here:
...
0
votes
0answers
12 views
Cannot apply migration
I am trying to apply a migration to my database.
Initially the DB was reverse-engineered to code first using the EF power-tools. in my database the table names all begin with tbl_[NAME] so after ...
0
votes
1answer
21 views
EF Pre-generated views and multiple Contexts
In our environment we have more 200 tables and we are using EF 5.0 Code First to manage the database. Our software allows the users to modify the Entities and add Custom Fields to them.
Out of 200 ...
0
votes
0answers
36 views
EF should relation properties be virtual? [duplicate]
I see some people who put the relation properties virtual and some other not. Could someone explain the difference?
[Table("Prospects")]
public class Prospect
{
[Key]
public int ID { get; ...
1
vote
2answers
36 views
Delete parent with children in one to many relationship
I have a .NET4.0 application with Entity Framework 5.0 e Sql Server CE 4.0.
I have two entities with a one to many (parent/child) relationship. I've configured it to cascade delete on parent removal, ...
1
vote
1answer
52 views
Entity framwork mutiple object relation
I have a table with 2 foreignkeys to the same parent table, Edge.StartStationId and Edge.EndStationId.
I am trying to map theese to objets in entity framework, but can't find a workaround which seems ...
0
votes
1answer
28 views
EntityFramework CodeFirst Mapping to have camel case in the database
I've just started a new company who are happy for me to use CodeFirst - but want the database fields camel cased.
I'm currently writing a lot of this kind of stuff ...
[Column("active")]
...
2
votes
1answer
78 views
Generic save method
In my generic repository I need to write generic Save method which will edit existed or add new entity depending on id.
public void Save<T>(T entity) where T : TEntity, IKeyId
{
if ...
0
votes
1answer
21 views
entity framework navigation properties joins different sql produced from different applications
In one web application I am using this :-
using (MvcApplication1.Models.PlumSoftwareEntities db = new Models.PlumSoftwareEntities())
{
var results = (from p in db.Work_Details
...
0
votes
0answers
36 views
SQL Server 2008 R2 Express - CREATE DATABASE permission denied in database 'master' [migrated]
I've developed a desktop application using WPF and Entity Framework code-first.
In my application the user can create multiple databases at run-time.
But Entity Framework can't create database if ...
1
vote
1answer
36 views
unable to recieve data from client
I am trying to send two lists and a date value from client to server. i create my url and when i alert it is correct. when i send the data to server i am trying to extract but i dont get my values ...
0
votes
0answers
31 views
MVC4 & EF5 System.ArgumentException: An item with the same key has already been added in ELMAH logs
I am getting "System.ArgumentException: An item with the same key has already been added." in ELMAH Log. The application works fine on dev without any exception. I am sure all the fields in the entity ...
0
votes
2answers
35 views
One to many navigation property is null in code first EF5
What is the proper way of defining related collections in code first Entity Framework 5?
I was following this summary but something is not working.
I have the following model:
class Order
{
public ...
0
votes
0answers
31 views
Returning Complex Type from Entity Framework
i have stored procedure like this :
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[CustOrderHist] @CustomerID nchar(5)
AS
SELECT ProductName, Total=SUM(Quantity)
FROM ...
1
vote
1answer
16 views
DBContext simplest way to update foreign key
var orgAcc = db_.Accounts.Find(account.Id);
db_.Entry(orgAcc).CurrentValues.SetValues(account);
orgAcc.Company = db_.Companys.Find(account.Company.Id);
...
1
vote
2answers
30 views
DateCreated or Modified Column - Entity Framework or using triggers on SQL Server
After I read one question in attached link, I got a sense of how to set DateCreated and DateModified columns in Entity Framework and use it in my application. In the old SQL way though, the trigger ...
2
votes
2answers
21 views
Change table schema on middle table generated by Entity Framework
I have got model with M:N relation like this:
[Table("Messages", Schema = "public")]
public class Message
{
public int Id { get; set; }
public virtual IList<Phone> Phones{ get; set; }
...
0
votes
0answers
43 views
Can I use Entity Framework on Windows Phone 8
Is it possible to use Entity Framework to save data to a SQL CE database in isolated storage on Windows Phone 8?
When I try and add a reference to EF 5 using NuGet I get the error:
"Failed to add ...
0
votes
1answer
15 views
Error with EntityDataSourceExtention to Enable Insert(): “type or name EntityDataSource could not be found”
In Visual Web Developer 2010, I'm trying to implement the extension to EntityDataSource described on this page that enables Insert() to be used as a method:
...
0
votes
1answer
20 views
Entity Framework DB First: Convert Associative Table to Navigation Properties
I am using Entity Framework Database First, but I would like to replicate the following behavior from the Code First paradigm:
In Entity Framework Code First, you can do something along these lines:
...
0
votes
1answer
28 views
“The relationship could not be changed because one or more of the foreign-key properties is non-nullable…”
Getting the following error upon save of my context:
The operation failed: The relationship could not be changed because one or more of the foreign-key properties is non-nullable. When a change is ...
-3
votes
3answers
72 views
Using Contains method within linq's Where clause
I've got a problem with my query.
I have two simple classes. Let's say
public class A{
public List<B> MyCollection{get; set;}
}
public class B{
public string Id;
}
//I want to do something ...
2
votes
2answers
46 views
Does Entity Designer support many-to-many relationships with duplicate association data?
Package A has one Desktop Y and one Monitor Z. Package B has one Desktop Y and two Monitor Z's. I want to represent that relationship in a database created by Entity Designer.
There's a many-to-many ...
0
votes
2answers
73 views
Select entity connection string at runtime
I have an application that connects to a MYSQL database. I use Entity Framework to do all the job.
Now When I first Installed, I set up entity, and resulted in a connection string like this:
...
0
votes
1answer
41 views
Application independent of database schema
I have an asp.net application that uses the entity framework to interact with the database.
In the new version that I am working on now, I need to separate the application from the database so that ...
0
votes
2answers
51 views
How to map a 1:1 (optional) mapping in Entity Framework
I have a class like:
public class Employee
{
[Column("employee_id")]
public int EmployeId {get;set;}
}
public class Location
{
[Column("employee_location_id")]
public int Id ...
0
votes
0answers
11 views
Entity Framework and Isolation Level Serializable
What locks are applied when using a transaction with IsolationLevel.Serializable to apply changes to two tables that have a relationship in my edmx but do not have a foreign key constraint in the ...
0
votes
1answer
21 views
Loading most related entities of an object is very slow
Continuing from my earlier question where I described my schema (repeated here for your convenience):
Parties ( PartyId, ClientId, AddressId, DateTime )
Tents ( PartyId, TentDetails... )
Clowns ( ...
0
votes
2answers
39 views
SQL Server Express 2008, Joins, and Timeout Expired Error Message
I have a stored procedure that does quite a bit of joins. The query though runs pretty fast, around 3 seconds. I just cant figure out the below error poping up every once in a while. I event cache ...
1
vote
2answers
54 views
How do I handle persistence and unit of work in DDD using Entity Framework?
I'm a little overwhelmed with all of the information on DDD, unit of work, domain services, app services, etc. I'm trying to figure out how a persistence-ignorant domain model ultimately gets ...
0
votes
2answers
51 views
When using e.Entity in an EntityDataSource Inserted event, is it good practice to wrap it in using()?
If I'm doing something with the inserted values during an EntityDataSource's Inserted event, should I wrap e.Entity in a using() statement? I can't tell. Is that "in context"?
Should it be (as I've ...
0
votes
1answer
49 views
Entity Framework: Populate existing object instance
Here's how I would normally retrieve an object from the database:
Dim Prod = (From P In Db.Products Where P.ProductID = 123).FirstOrDefault()
Now, I need to implement a "load" instance method that ...
0
votes
1answer
44 views
AddOrUpdate throws “A foreign key value cannot be inserted” with one to many relationship
My application targets .NET 4.5 and uses EntityFramework 5.0, Sql Server Compact 4.0.
I'm trying to seed my database with some entities, but it keeps throwing:
...
0
votes
1answer
71 views
setting database value to a property value of an object
I'm trying to create a new object in the database which will take a value of a database entry based on the choice of a DropDownList.
In the following example I want a new "Domena" object to hold the ...
1
vote
1answer
33 views
Accessing columns in cross reference table via LINQ with Entity Framework
I have a Users table, a Roles table, and a cross reference table Users_Roles which has the following columns:
User_ID Role_ID Beamline_ID Facility_ID Laboratory_ID
The Beamline_ID, ...
0
votes
2answers
55 views
How to cast back an object with a linq query inside it with more than 1 entity? [duplicate]
I have the following scenary, one linq query with a join statment:
public Object getMGM(int MEB_Id)
{
var unitOfWork = new ...
1
vote
1answer
28 views
NullReferenceException with EF
I have a problem with the Exception NullReferenceException ... class that auto generated by EF and contains a list of ICollection and the list supposed to be initialized in the constructor but when ...
0
votes
0answers
21 views
Transactions and Entity Framework Pattern for Large Loads?
.NET 4.5/VS2012.
I am having a discussion about the pattern/placement of EF and Transaction code. The MSSQL 2012 database is called
almost exclusively via stored procedures, wrapped by EF. The ...
1
vote
3answers
45 views
ForeignKeyAttribute Not Working MVC3 EF5
I have these classes:
public class SystemRequirements : DbEntity
{
public string OS {get;set;}
}
public class Application : DbEntity
{
public string Name {get;set;}
public virtual ...
1
vote
1answer
59 views
Entity Framework : many to many relationship , Insert and update
I have a news entity and I get the news based on their NewsID. then I defined a new entity , a Group and I want to get the news based on their Group ID. I tried to handle this (many to many) ...
0
votes
0answers
21 views
how to generate another database in ef5
I'm using EF5 code first method on my Data layer project.
I want EF5 generate another database like IfaGenerated for my integration tests.
I've just renamed initial catalog from "Ifa" to IfaGenerated ...
1
vote
1answer
58 views
Publish Entity-Framework Code-First Migrations with no Context in the startup project
I am building a solution with the following Projects:
Main.Data - Class Library project
Main.API - Asp.NET MVC WebApi - references Main.Data
Main - Asp.NET MVC 4 web application - references ...
1
vote
0answers
33 views
Entity Framework 4.0, caching [duplicate]
I'm using entity framework 4.0. I have a dbContext that is used to access a number of non changing lookup tables.
I'm wondering how I should go about caching the data, so they don't get re-read from ...







