For those who know/read it, i am currently on chapter 9, using BreakAway database model.
This is the link to download the DB from her site: (on chapter 8)
http://learnentityfr.../downloads/#2ed
When i try to do just a small query like:
var context = new BAGA.BAEntities();
List<BAGA.Customer> customers=
context.Customers.Include("Contact")
.Include("PrimaryActivity")
.Include("SecondaryActivity")
.Include("PrimaryDestination")
.Include("SecondaryDestination")
.Include("Reservations.Trip.Destination")
.ToList();
customerBindingSource.DataSource = customers;
I get the exception say's: An item with the same key has already been added.
I read on some posts that there's might be a problem with primary or foreign keys in the scheme but couldn't find one issue on the database that can cause this.
Can someone point the problem on that database's tables or the domain model it creates? I am using VS2012 for the examples on the book.
Or, am i doing somthing wrong? (although, i haven't do anything yet
Thanks












