我试图在 Seed() 线程中获取可执行路径。但是我没有得到我想要的值。我的目标是枚举可执行路径中的文件,并使用它们;
internal sealed class Configuration : DbMigrationsConfiguration<DBContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = true;
}
protected override void Seed(DBContext context)
{
// get list of files
var sqlfileList = Directory.GetFiles(System.Reflection.Assembly.GetEntryAssembly().Location);
}
}
包管理器控制台的输出;
你调用的对象是空的。
我期待着;
C:\Development\My.Domain