Entity Framework: Unable to load the specified metadata resource

后端 未结 2 1565
醉梦人生
醉梦人生 2021-01-01 01:08

I decided to move Entity Connection String from app.config to code. However after setting it up like this:

    public static string         


        
2条回答
  •  鱼传尺愫
    2021-01-01 01:55

    After reading this answers article and this blog I changed:

      entity.Metadata = @"res://*/Data.System.csdl|res://*/Data.System.ssdl|res://*/Data.System.msl";
    

    To:

      entity.Metadata = "res://*/";
    

    And it works :-)

提交回复
热议问题