如何从EF中的Seed()访问sql文件?

时间:2016-08-26 05:40:45

标签: c# .net entity-framework code-first

我有以下内容:

  string sproc = AppDomain.CurrentDomain.BaseDirectory + "/Stored Procedures/new_message.sql";
  context.Database.ExecuteSqlCommand(sproc);

sproc路径由于某种原因无效。从Seed EF代码优先迁移方法访问项目目录中的文件的正确方法是什么?

enter image description here

1 个答案:

答案 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));