I am using EF 5 and c#....In my Main Project i use CodeFirst to Create my Database. There i got this Entity:... public class Shift {
public string Name { get; set; }
public TimeSpan StartTime { get; set; }
public TimeSpan EndTime { get; set...
i have created a class library project which contain the entity framework object who will be responsible for common data access layer for my multiple project.after adding the generated dll file to my domain project and using the entity object from class l...