动态连接字符串与EF4,获取元数据路径无效

时间:2011-09-20 17:04:05

标签: asp.net-mvc-2 entity-framework-4

这是我的问题。

我为我的Entity Framework上下文使用动态连接字符串。

//In Web Config

add key="DataSource" value="WIN-QBRH0MJL8IT\ISS" />


//In my EntityFactory.cs
 public static DBEntities GetEntity()
        {
            var scsb = new SqlConnectionStringBuilder();

            scsb.DataSource = ConfigurationManager.AppSettings["DataSource"];

            scsb.InitialCatalog = "db1";
            scsb.MultipleActiveResultSets = true;
            scsb.IntegratedSecurity = true;
            if (HttpContext.Current.Session["DBName"] == null)
            {
                HttpContext.Current.Response.Redirect("/Account/Step1");
            }
            else
            {
                scsb.InitialCatalog = HttpContext.Current.Session["DBName"].ToString();
            }

            var builder = new EntityConnectionStringBuilder();
            builder.Metadata = "metadata=~/bin/Models/DBModel.csdl|~/bin/Models/DBModel.ssdl|~/bin/Models/DBModel.msl";
            builder.Provider = "System.Data.SqlClient";
            builder.ProviderConnectionString = scsb.ConnectionString;
            DBEntities db = new DBEntities(builder.ConnectionString);
            return db;
        }

我知道问题出在这一行:

  

builder.Metadata =   “元数据=〜/ bin中/型号/ DBModel.csdl |〜/ bin中/型号/ DBModel.ssdl |〜/ bin中/型号/ DBModel.msl”;

我检查并且csdl,ssdl,msl位于/mvcinfosite/bin/Models/.csdl,.ssdl,.msl

我的edmx的配置是:
元数据工件处理:复制到输出目录

这是完整的错误

  

指定的元数据路径无效。有效路径必须是   现有目录,扩展名为“.csdl”的现有文件,   '.ssdl'或'.msl',或标识嵌入资源的URI

谢谢

1 个答案:

答案 0 :(得分:1)

尝试删除~字符并使用应用根的有效相对路径。我认为它无法使用ASP.NET应用程序中使用的这个特殊字符。