下載app免費領取會員
1.新建控制臺程序
2.NuGet添加entity framework
3.添加數據庫HelloEFDb.mdf
4.編碼
class Program
{
static void Main(string[] args)
{
HelloDbContext context = new HelloDbContext();
var p1 = new Person() { Id = 1, Name = "Jim" };
var p2 = new Person() { Id = 2, Name = "Tom" };
context.Persons.Add(p1);
context.Persons.Add(p2);
context.SaveChanges();
}
}
public class HelloDbContext : DbContext
{
private static string _connStr =
@"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=E:\code\gits\EntityFramework6\HelloEF\HelloEFDb.mdf;Integrated Security=True";
public DbSet<Person> Persons { get; set; }
public HelloDbContext():base(_connStr)
{
}
}
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
}
5.數據庫里增加了__MigrationHistory和People兩個表
本文版權歸腿腿教學網及原創作者所有,未經授權,謝絕轉載。
上一篇:二次開發教程:entity framework 自定義映射
下一篇:二次開發教程:Dapper里使用Attribute自定義映射關系
推薦專題