qihang-ecom-erp-open/OrmContrast.EF/MyContext.cs

21 lines
392 B
C#
Raw Normal View History

2014-10-16 16:36:53 +08:00
using OrmContrast.Entity;
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmContrast.EF
{
public class MyContext : DbContext
{
public MyContext()
: base("name=MyContext")
{
}
public DbSet<hotelacc> hotelaccs { get; set; }
}
}