The entity-framework-4.3.1 tag has no wiki summary.
0
votes
0answers
60 views
Add entity from another context to context and attach existing object graph entities so no duplicates
I have a method that creates a new entity with a pretty complex object graph that may or may not contain existing entities in it. That method manages its own context. It returns the entity which is ...
0
votes
0answers
53 views
The EntityFramework Changetracker doesn't detect EntityState of Collection NavigationProperty
Simply : DbContext.ChangeTracker Doesn't detect (add/remove) of collection navigation property
so I can't RollBack its changes, but changes save to DB by
[Commiting the Transaction /or calling ...
1
vote
1answer
1k views
Using EntityFramework dbContext to get records with count in another table
I am using EntityFramework 4.3.1 and Database first with dbcontext.
Let's say I have 2 tables:
Customer
and
Order
with a 1 to many relationship between Customer and Order.
I have two queries that I ...
0
votes
1answer
375 views
How to avoid duplicate insert in Entity Framework 4.3.1
I have a small model created using code-first approach - a class City which contains only information about city name.
public class City
{
public City()
{
Posts = new ...
-1
votes
1answer
211 views
DDD, TDD, Software Patterns, UoW, Dependency Injection etc [closed]
I've been a developer for a few years but still struggle to fully understand and tie the above concepts together. I understand the importance and basic principles of DDD, TDD etc but despite my ...
3
votes
3answers
111 views
Entity Framework - closure of Object Contexts
After using EFProfiler (absolutely fantastic tool BTW!) for profiling a few of our Entity Framework applications, it seems that, in most cases, all of the Object Contexts are not closed.
For example, ...
5
votes
1answer
169 views
Is it possible to stop Entity Framework “fixing up” the relationships after SaveChanges?
I am getting this exception from Entity Framework 4.3.1 (incidentally from an ASP .NET MVC 3 web application built in Visual Studio 2010 against .NET 4):
System.InvalidOperationException: The ...
0
votes
0answers
180 views
Invalid connection string for WCF Data Services
This connection string
<add name="MyDbContext" connectionString="Server=myServer;DBN=myDb;UID=user;PWD=****;InitString='...my-specific-initstring...'" providerName="iAnywhere.Data.SQLAnywhere" ...
7
votes
1answer
773 views
Entity Framework 4.3.1 -> 5.0 Exception: “EntityType has no key defined. Define the key for this EntityType.”
In Entity Framework 4.3.1 I had the following Models, and they worked fine:
public class BaseUser
{
[Key]
[MaxLength(100)]
public string Username { get; set; }
}
[Table("AppUser")] // ...
5
votes
3answers
168 views
How to reduce number of injected dependencies on controller
I am using MVC3, Entity Framework v4.3 Code First, and SimpleInjector. I have several simple classes that look like this:
public class SomeThing
{
public int Id { get; set; }
public string ...
1
vote
1answer
206 views
Entity Framework 4.3.1 Table Per Type Code First generates a different schema in SQL Server Express 2008 and SQL Server 2008R2
I'm using EF CodeFirst to generate quite a large schema including TPT tables, e.g.
[Table("MissingReplacementDongles")]
public class MissingReplacementDongle : ReplacementRentalDongle
{
public ...
7
votes
1answer
111 views
Why would a datetime prevent a navigation property from getting loaded?
I am using Entity Framework 4.3.1 using the DbContext POCO approach against a SQL Server 2012 database.
I have just two tables in the database and they look like this:
NOTE: There are no ...
0
votes
1answer
275 views
Entity Framework - lazy loading failing but eager loading fine - how to fix/debug?
I am using entity framework 4.3.1 against a sql server 2012 database and I have a database with these tables (there are more but the relevant bits are below):
Customer
CustomerNumber ...


