Skip to content

Instantly share code, notes, and snippets.

@johnmmoss
Created February 22, 2015 11:44
Show Gist options
  • Save johnmmoss/82a7a8fc9988e10ea693 to your computer and use it in GitHub Desktop.
Save johnmmoss/82a7a8fc9988e10ea693 to your computer and use it in GitHub Desktop.
Timesheets App Sample Context
public class TimesheetsContext : DbContext
{
public DbSet<Employee> Employees { get; set; }
public DbSet<Department> Departments { get; set; }
public DbSet<TimeCode> TimeCodes { get; set; }
public DbSet<Timesheet> Timesheets { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment