Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are required assemblies for Entity Framework 4.1 and SQL Compact?

Previously I used Entity Framework 4.0 CTP5 (code-first) and SQL Compact in my projects. I had the following packages installed using NuGet:

  1. SQLCE.4.0.8435.1 (version 4.0.8435.1)
  2. EFCodeFirst 0.8 (version 4.0.30319.0)
  3. 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?

like image 653
Andrei M Avatar asked Mar 16 '11 13:03

Andrei M


1 Answers

Yes, we're working on an EntityFramework and EntityFramework.SqlServerCompact this week.

like image 63
Scott Hanselman Avatar answered Oct 13 '22 09:10

Scott Hanselman