Microsoft.EntityFrameworkCore Microsoft.EntityFrameworkCore.SqlServer Microsoft.EntityFrameworkCore.Tools
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=;"); } }
遷移c#
add-migration xxx update-database
using (var context = new WebCrawlerDbContext()) { //do something context.SaveChanges(); }
查詢相關內容:加載相關數據app