//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace TrainingBeforeExams
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class testEntities : DbContext
{
public testEntities()
: base("name=testEntities")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public virtual DbSet Dish { get; set; }
public virtual DbSet Order { get; set; }
public virtual DbSet Place { get; set; }
public virtual DbSet Preorder { get; set; }
public virtual DbSet Role { get; set; }
public virtual DbSet Staff { get; set; }
public virtual DbSet StaffList { get; set; }
public virtual DbSet StatusOrder { get; set; }
public virtual DbSet StatusPlace { get; set; }
public virtual DbSet StatusUser { get; set; }
public virtual DbSet User { get; set; }
}
}