English 中文(简体)
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?

最佳回答

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

问题回答

I think we have to wait for them to release an updated EF + SQL CE library /sign





相关问题
SQLServerCE Problem with parameterized queries from .NET

I am pulling the hair out of my head trying to figure this one out. I can t make Parameterized queries to work in VB.Net, when I am using parameters. From what I have found, using a parameter in a ...

Entity Framework with File-Based Database

I am in the process of developing a desktop application that needs a database. The application is currently targeted to SQL Express 2005 and works wonderfully. However, I m not crazy about having ...

热门标签