码迷,mamicode.com
首页 > 其他好文 > 详细

Entity Framework Core for Console

时间:2019-10-10 19:53:46      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:www   frame   using   kth   core   change   ati   serve   console   

Microsoft.EntityFrameworkCore
Microsoft.EntityFrameworkCore.SqlServer
Microsoft.EntityFrameworkCore.Tools

DbContext

public class WebCrawlerDbContext : DbContext
{
    public DbSet<TableName> YourTable { get; set; }


    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    {
        optionsBuilder.UseSqlServer(@"Server=; Database=DbName; User ID=sa; Password=;");
    }
}

迁移

add-migration xxx
update-database

使用

using (var context = new WebCrawlerDbContext())
{
    //do something
    context.SaveChanges();
}

查询相关内容:加载相关数据

参考资料

Getting Started With Entity Framework Core - Console

Entity Framework Core for Console

标签:www   frame   using   kth   core   change   ati   serve   console   

原文地址:https://www.cnblogs.com/Lulus/p/11649986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!