-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel1.Context.cs
32 lines (28 loc) · 1.1 KB
/
Model1.Context.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace BreakfastCards1
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class BreakfastCardsEntities : DbContext
{
public BreakfastCardsEntities()
: base("name=BreakfastCardsEntities")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
public virtual DbSet<Table_ActualQuantity> Table_ActualQuantity { get; set; }
public virtual DbSet<Table_BreakfastBoolean> Table_BreakfastBoolean { get; set; }
public virtual DbSet<Table_FourName> Table_FourName { get; set; }
}
}