I have two POCO classes a User and an Address.Address is a complex object, and a User has one Address.I want to create a single User view that allows the create/edit of an Address on the same form via
public class Car { public string SomeProperty { get; set; } public Manufacturer Manufacturer { get; set; }
So I have a schema I\'ve developed that has a table that acts a junction table for multiple entities.This is for the purpose of tagging.I have my entities use GUIDs and then I\'m able to centralize th
I\'m having some troubles when trying to set my DB using a Initializer. I\'ve 3 tables, LabTest->LabValue<-LabIndicator, and this is how I code it:
I noticed something interesting when I was performing a delete using EF code first. I use the following domain model:
I have a windows application working with a SQL Compact 4.0 database, using EF 4.1 and code-first approach.
I have a class that gets arranged into a hierarchy, such as this: class TestContainer { ... bla bla bla...
I\'m writing an ASP.net MVC3 application using Entity Framework Code First and SqlCe4. I have been designing several models, and found one that is turning out to be interesting.This is what I have so
I would like to implement a custom database initialization strategy so that I can: generate the database if not exists
I\'m using the latest and greatest Entity Framework Code First and I\'m running into a scenario where I want one of my classes to use a string for the primary key.I had to manually add the key to the