Previously I used Entity Framework 4.0 CTP5 (code-first) and SQL Compact in my projects. I had the following packages installed using NuGet:
- SQLCE.4.0.8435.1 (version 4.0.8435.1)
- EFCodeFirst 0.8 (version 4.0.30319.0)
- EFCodeFirst.SqlServerCompact.0.8 (version 4.0.8435.1)
Now when EF 4.1 RC is published, I want to update all my libraries to the latest version. NuGet feed doesn t contain any updates for SQLCE.4.0.8435.1 anymore, but it has a new package SqlServerCompact - 4.0.8482.1 (new package, not a new version of existing package). Presume, that it was just renamed and I should install it. Is it right? Presume, yes.
NuGet also doesn t contain any updates for EFCodeFirst and EFCodeFirst.SqlServerCompact packages. But it has a new EntityFramework 4.1.10311.0 package.
So what should I install? Are EntityFramework 4.1.10311.0 and SqlServerCompact - 4.0.8482.1 enough for using EF code first with SQL Compact?