我在实体框架上使用 DBContext,使用本教程中的过程来创建数据库。
public class BloggingContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlite("Filename=blog.db");
}
}
并使用以下方式保存:
using (var context = new BloggingContext())
{
context.Add(blog);
await context.SaveChangesAsync();
}
我将如何将日记模式设置为 WAL 之类的东西?