我对add-migration有问题,我正在使用实体框架,并试图将迁移添加到Windows 10及其Discord.net bot上的项目中,我正在为数据库使用迁移。
这是我的SQL数据库有关配置覆盖的代码
bot.load_extension("cogs.fun")
这是我的数据库密钥
namespace bot.Core.DataBase
{
public class SqlDb : DbContext
{
public DbSet<Creds> Credits { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder Options)
{
string DbLoc = Assembly.GetEntryAssembly().Location.Replace(@"bin\Debug\netcoreapp2.0", @"Core\Data\DataBase.sqlite");
Options.UseSqlite("Data Source=" + DbLoc);
}
}
}