Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System.Data.SqlServerCe.Entity.dll

using nuget : add ef4.1 and sqlce4 but i got this when project uploded on my hosting space

Exception Details: System.Data.MetadataException: Schema specified is not valid. Errors: NModel.ssdl(2,86) : error 0004: Could not load System.Data.SqlServerCe.Entity.dll. Reinstall SQL Server Compact.

like image 932
HRV Avatar asked Mar 02 '26 14:03

HRV


1 Answers

Everything work fine if you add references with NuGet.

The required packages are:

  • EntityFramework.SqlServerCompact (https://nuget.org/packages/EntityFramework.SqlServerCompact/4.3.4)
  • Microsoft.SqlServer.Compact (https://nuget.org/packages/Microsoft.SqlServer.Compact)
like image 151
HRV Avatar answered Mar 06 '26 03:03

HRV