Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System.Data.MetadataException: Unable to load the specified metadata resource

My connection strings are as follows:

<add name="RollCallDBEntities" connectionString="metadata=res://System.Engine/RollcallNS.csdl|res://System.Engine/RollcallNS.ssdl|res://System.Engine/RollcallNS.msl;provider=Devart.Data.Oracle;provider connection string=&quot;User Id=user;Password=password;Server=127.0.0.1;Direct=True;Sid=ORCL&quot;" providerName="System.Data.EntityClient" /> 

my code are as follows:

using (var db= new RollCallDBEntities()) //ok {    var query = db.TBL_ROLLCALL.ToList(); //Unable to load the specified metadata resource. } 

my assembly:

System.Engine 

Anyone have any ideas?

these links did not soled my problem:
MetadataException: Unable to load the specified metadata resource
entity framework Unable to load the specified metadata resource
Entity Framework: Unable to load the specified metadata resource
Unable to load the specified metadata resource

like image 666
Meysam Savameri Avatar asked Aug 21 '13 07:08

Meysam Savameri


People also ask

What is metadata in connection string?

The Metadata parameter contains a list of locations for the EntityClient provider to search for model and mapping files. Model and mapping files are often deployed in the same directory as the application executable file.


1 Answers

I was getting an exception like this. The problem was that I renamed my .edmx file and forgot to change the name in EF Web.config file's connection string:

metadata=res://*/MyModel.csdl|res://*/MyModel.ssdl|res://*/MyModel.msl; 
like image 128
Leniel Maccaferri Avatar answered Sep 28 '22 11:09

Leniel Maccaferri