Entity Framework - Unable to load the specified metadata resource

前端 未结 17 1291
一生所求
一生所求 2020-12-14 15:21

I realise that this has been asked a number of times but I just can\'t seem to get the bottom of my issue. I\'m getting the following error stack:

17条回答
  •  被撕碎了的回忆
    2020-12-14 15:57

    Change the metaData

    connectionString="metadata=res://*/Entities.csdl|res://*/Entities.ssdl|res://*/Entities.msl;
    

    To

    connectionString="metadata=res://*/;
    

    The above change will fix the issue

提交回复
热议问题