我有以下内容:
string sproc = AppDomain.CurrentDomain.BaseDirectory + "/Stored Procedures/new_message.sql";
context.Database.ExecuteSqlCommand(sproc);
但sproc
路径由于某种原因无效。从Seed
EF代码优先迁移方法访问项目目录中的文件的正确方法是什么?
答案 0 :(得分:3)
如果这些.sql
文件在程序集中存储为嵌入资源,那么您可以执行以下操作:
Assembly asy = Assembly.GetExecutingAssembly();
Stream stm = asy.GetManifestResourceStream("yourAssembly.Stored_Procedures.new_message.sql");
if (stm != null)
{
string sql = new StreamReader(stm).ReadToEnd();
// now you have the SQL statements which you can execute
context.Database.ExecuteSqlCommand(sql);
}
如果需要,您可以使用它来确定Seed()
资源的名称:
Assembly asy = Assembly.GetExecutingAssembly();
string[] names = asy.GetManifestResourceNames();
throw new Exception(string.Join("", names));