Tagged Questions
1
vote
2answers
34 views
Entity Framework Code First Common Database Audit Fields
I'm new to Entity Framework, in the past I've used Enterprise Library or ADO.NET directly to map models to database tables. One pattern that I've used is to put my common audit fields that appear in ...
0
votes
0answers
18 views
ASP.NET MVC 4, Code First, View to Create/Edit Object with Many to Many Relationship
I have the model (code first) & database (SQL Server) setup with many to many relationship & seeding fine:
A Place can have many tags (eg Restaurant, bar, cafe) - and tags can belong to many ...
0
votes
2answers
23 views
What does CTP stand for in Entity Framework?
I am seeing CTP in an awful lot of posts lately. What does CTP stand for ?
Thanks
0
votes
1answer
29 views
Entity Framework 5 Enum that is built from a db table
I have those two entities :
Color entity is mapped to a table of constant values that represent colors.
Code=1, Name="Red"
Code=2, Name="Blue"
And so on...
In Car entity, the Color property is ...
0
votes
0answers
29 views
Fields Not Created in Entitiy Framework Code First
I have a POCO classes that inherit from a Base class. I'm using the EF Power Tools to display the entity data model. What I'm noticing is that that only two of the five properties are displaying from ...
0
votes
0answers
20 views
Multiplicity constraint violated
I have two entites:
ClaimDetail (int ID, IList ClaimDetailStatus, other...)
ClaimDetailStatus (int ID, ClaimDetailClaimDetail, other...)
Configuration:
...
1
vote
0answers
32 views
Is this really the best way to update detached entities?
I have the following code:
Get contact
public Contact LoadContactFromId(int contactId)
{
using(var ctx = new ContactContext())
{
var contact = ...
1
vote
1answer
44 views
Entity Framework and Generics for bulk methods
I have migrated an application from Linq To Sql to Entity Framework.
We use this application to synchronize registries between two sql servers.
When we were using Link to sql, we could use some bulk ...
0
votes
1answer
23 views
Is there a better way to get an older value after an EntityState.Modified in EF5?
I just want to know if it existe a better way to get the value in database after an EntityState.Modified. My syntaxe :
db.Entry(UserProfile).State = EntityState.Modified;
var olderPhoto = ...
1
vote
0answers
50 views
EF 5 foreign key names
I have an entity called User and another called AvailableConsumption.
There's an association of 0..1 to 1 between them and AvailableConsumption is supposed to have a User's FK called UserId (which ...
0
votes
1answer
20 views
Moving EF POCOs to separate project compilation errors
I have two separate projects, one that holds EF pocos and the MyDb.tt file that generates them. That project compiles fine.
The remaining project that holds the MyDb.edmx will not compile. It has ...
3
votes
1answer
49 views
Why is Entity Framework ignoring my connection string?
I have a connection string:
<add name="Gini" providerName="System.Data.SqlClient" connectionString="user id=user;Password=pa55;Data Source=server;Database=gini" />
I want EF to be able to ...
1
vote
1answer
33 views
Filtering navigation properties in EF Code First
I'm using Code First in EF. Let's say I have two entities:
public class Farm
{
....
public virtual ICollection<Fruit> Fruits {get; set;}
}
public class Fruit
{
...
}
My ...
0
votes
2answers
57 views
Bring back DbContext.Detach() method with an extension method (EF5) [duplicate]
There is no Detach(object entity) on the DbContext in Entity Framework 5.
To detach an entity, the state now needs to be changed. Maybe I am missing something, but this seems much less intuitive and ...
0
votes
1answer
20 views
How do I make a self reference in Entity Framework Code First?
I have a device class, computer class and a virtualdesktop class. Every computer is a device and every virtualdesktop is a computer. I want to add a property to my virtualdesktop that references ...
1
vote
3answers
74 views
ASP.NET MVC 4, EF5, Unique property in model - best practice?
ASP.NET MVC 4, EF5, Code First, SQL Server 2012 Express
What is best practice to enforce a unique value in a model? I have a places class that has a 'url' property that should be unique for every ...
0
votes
1answer
27 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
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
...
0
votes
1answer
13 views
Problems with EF version after move project
After move my Project vs2010 ef 4 to vs 2012 ef5 , appear on my Project some problems with DataAnnotations on the models
[ForeignKey("StrIdDocumento")]
Can't find type or space name 'ForeignKey' ...
1
vote
3answers
35 views
Entity Framework load entity from parameterized Constructor
I am upgrading one of existing projects DAL to Entity Framework. In leagcy DAL I hav consturctors like e.g.
public class User{
public User(){}
// This constructor loads data from database ...
0
votes
1answer
36 views
EF 5 Code first Entities FirstOrDefault method returns null
This is an example based on Programming Code First EF.
Please look at the below classes. When the PersonRepository calls in instantiated and InsertOrUpdate method is called Null value is returned. As ...
0
votes
0answers
25 views
Taking care of deleted related properties when saving a detached graph
I have a complex graph that saves user settings for particular screen layouts in my C# winforms application.
I am using EF Code First.
I found the question here useful and am trying to write my own ...
0
votes
1answer
29 views
Tell Entity Framework to use the correct name for this Foreign Key
Edit: I should probably include the Email, Address, and Phone entities:
Public Class AddressEntity
Inherits AddressComplexEntity
<IgnoreForCompare()>
Public Property AddressId() As ...
0
votes
2answers
47 views
Most common practice for managing ObjectContext in EF
I'm really confused about the standard way to create and dispose of your context for my MVC3 app with multiple layers. I started with EF4 and upgraded to EF5, and the default MSDN tutorials always ...
0
votes
2answers
32 views
Entity Framework piece together LINQ to Entity Queries
I need some help here. I am trying to make a portion of an EF Query reusable.
var query = from sr in SomeEFRepository.SelectAll()
select new {
KeyValuePivotField1 = (from ...
0
votes
1answer
25 views
Entity framework - Intensive CPU load on Add
I have small project with about 20 tables where row entries are of minimal contents size but there are plenty of relationships between the tables.
I'm using code first with all my navigational ...
0
votes
0answers
58 views
EF code-first migration: SqlCeException altering NTEXT column
My application uses Entity Framework 5.0 code-first on top of a Sql CE database. Until now, we have used Automatic Migrations to manage entity mapping changes. However, I now have a change for which I ...
0
votes
0answers
51 views
Custom foreign key relationship using Fluent API
I am working on a project using VS 2012 and EF 5.0.
I am having two tables:
public class AttendanceRecord
{
public int Id { get; set; }
public DateTime RecordedDate { get; set; }
...
0
votes
1answer
74 views
The type not mapped entity framework 5.0
I was following a video on EF code first.
I tried to follow the exact steps in VS 2012 console app, Please see my code below,
class Program
{
static void Main(string[] args)
{
using ...
0
votes
1answer
33 views
Entity Framework Check if Collection Contains Item
I'm trying to execute the below query in EF5:
var data = from adi in _repo.AccountingDocumentItems
from e in adi.Employees
let c = adi.Employees.Count()
...
0
votes
1answer
31 views
EF5 Code first enum from another assembly not being mapped
I am using EF5 CodeFirst and I have a POCO entity which uses, as one of it's columns, an enum defined in another assembly. When i try to construct my data context I get the following error:
Schema ...
0
votes
2answers
73 views
easy way to magically generate the update and insert stored procedures when you override the delete
Acck I have not had to create a special stored procedure for my entity class in a while, before the current version. And then it was on smaller tables. I created my delete, great good, but I forgot ...
-1
votes
1answer
27 views
Entity Frame work Coded first - Create Readonly EDMX Model
I am just starting out with EF Code-first:
If I create a read-only EDMX file from my code first can I save this readonly file as a stand-alone file and then include the resultant file in my project ...
0
votes
1answer
46 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
0answers
17 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 ...
1
vote
2answers
45 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, ...
0
votes
1answer
30 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
52 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
0answers
39 views
Dispose Entity DbContext in WebForm ASP.NET
I was using 1 class to provide data to my webpage. Since I changed to 2 class i got error
The operation cannot be completed because the DbContext has been disposed.
My two class derived from ...
1
vote
0answers
47 views
EF 5.0 Code First navigation property null for only one property
I seem to be having a problem with the following model using EF 5.0 CodeFirst:
When I try and do a listing with SalesPlanActivity I am unable to get the Activity name from the navigational property
...
0
votes
1answer
32 views
Entity Framework with Proxy Creation and Lazy Loading disabled is still loading child objects
I'm having some issues with the Entity Framework using POCOs and I hope someone can tell me at a high level if the behaviour I'm seeing is expected or I need to dig deeper into why it's happening.
I ...
0
votes
1answer
37 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 ...
0
votes
1answer
41 views
How do you seed data with Entity Framework Database First approach?
I see many examples of seeding with Code First, but I'm not sure I understand what the idiomatic way of seeding the database when using EF Database First.
1
vote
0answers
35 views
Table spitting vs Entity splitting in Entity Framework, c# [closed]
I already got how to implement table or entity splitting, but who can explane to me when to use first and when to use second approaches?
Use cases would be appreciated.
0
votes
0answers
23 views
Is there a way to test if an entity exists in the database?
I've been trying to find out if it's at all possible to determine weather an Entity Framework POCO exists as a record within the database and not just as an entity in memory?
If not what's the best ...
0
votes
1answer
42 views
Repository pattern in Web Forms
i have used the repo pattern in my web forms application in the following way
UI Layer:
it contains the code behind files in which the controls are being binded and user actions like insert update ...
0
votes
0answers
18 views
DbContext detect when related collection entities added / removed
I have two ListViews. The first one displays all Parent entities (db.Parents.Local) and the second one should display all Parent.Children from the current item of the first ListView's ...
0
votes
0answers
26 views
Count Method in Repository EF5
I found myself in something I cannot really explain. I am creating a test in C# in order to test that child objects are not being also inserted in the database.
So the test I am doing is:
Count ...
0
votes
1answer
43 views
Can I create multiple associations between two entities in Entity Framework 5, c#?
E.g. I have 2 entities:
public class Department
{
public Guid Id { get; set; }
public string Name { get; set; }
public ICollection<Employee> Employees { get; set; }
public ...
1
vote
0answers
44 views
“EntityType has no key defined” exception although key is defined with HasKey
Using EF 5 (reverse engineered code first), my model was working fine until it suddenly stopped.
\tSystem.Data.Entity.Edm.EdmEntityType: : EntityType 'ProjectsDate' has no key defined. Define the ...



