-1

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

Code:

IPagedList<Tbl_Product> data = context.Database
                                      .SqlQuery<Tbl_Product>("GetBySearch @search", param)
                                      .ToList()
                                      .ToPagedList(page ?? 1, pageSize);
return new HomeIndexViewModel
gokhancevik
  • 175
  • 3
  • 12
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Mar 05 '22 at 13:18

2 Answers2

0

Try - Right click on the project>>Clean>> and then Rebuild - This resolved the error for me.

Also, this question is similar to: System.Data.MetadataException: Unable to load the specified metadata resource

DJN
  • 153
  • 2
  • 10
0

The error comes from SQL Server. It means that the server failed to find the procedure with name 'GetBySearch'

There might be several reasons for that:

  • typo in code or on the server - double-check that the name on the server matches exactly the name you call

  • double-check that the data source is set to the right server

  • double-check that the database name is specified, aka either it is set in the connection string or it is set by calling ChangeDatabase method on SqlConnection. Refer to MSDN for more details...

Let me know if you have more questions.