从EF Code-First DbContext类生成SQL CE数据库

时间:2011-01-29 17:14:38

标签: .net entity-framework sql-server-ce code-first ef-code-first

我已经以Entity Framework Code-First约定的方式定义了一组类,并使用System.ComponentModel.DataAnnotations属性注释了类属性。

现在我想从此代码生成SQL Server Compact Edition(SCSE)(4.0)数据库。

执行此操作需要哪些代码以及需要导入哪些程序集?

到目前为止,我已导入C:\ Program Files(x86)\ Microsoft SQL Server Compact Edition \ v4.0 \ Desktop {System.Data.SqlServerCe.dll,System.Data.SqlServerCe.Entity \ System.Data .SqlServerCe.Entity.dll} dll文件。

任何指针都表示赞赏。文章和诸如此类的。

4 个答案:

答案 0 :(得分:15)

我找到了解决方案。关键是这行代码:

DbDatabase.DefaultConnectionFactory = new 
                      SqlCeConnectionFactory("System.Data.SqlServerCe.4.0");

以下是完整的示例:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Proto
{
    using System.Data;
    using System.Data.Entity;
    using System.Data.Entity.Database;
    using System.Data.SqlServerCe;
    using System.ComponentModel.DataAnnotations;

    class Program
    {
        static void Main(string[] args)
        {
            DbDatabase.DefaultConnectionFactory = new 
                        SqlCeConnectionFactory("System.Data.SqlServerCe.4.0");
            DbDatabase.SetInitializer(
                         new DropCreateDatabaseIfModelChanges<ProtoCatalog>()
                  );

            using (var db = new ProtoCatalog())
            {
                var user = new User
                {
                    Name = "bob",
                    Password = "123",
                    Creation = DateTime.Now,
                    PrimaryEmailAddress = "bob@example.com"
                };

                db.Users.Add(user);

                db.SaveChanges();

                Console.ReadKey();
            }
       }
    }

    public class ProtoCatalog : DbContext
    {
        public DbSet<User> Users { get; set; }
    }

    public class User
    {
        [Key, StringLength(50)]
        public string Name { get; set; }

        [Required, StringLength(100)]
        public string Password { get; set; }

        [Required, StringLength(320)]
        public string PrimaryEmailAddress { get; set; }

        [StringLength(320)]
        public string SecondaryEmailAddress { get; set; }

        [Required]
        public DateTime Creation { get; set; }

        public bool Active { get; set; }
    }
}

尽管如此,API可能会在EF Code-First CTP 5和RTM之间发生变化,但现在就是这样做的。

关于它,我做了一个小blog post

答案 1 :(得分:2)

请参阅此博客和相同链接(例如ScottGu文章):http://erikej.blogspot.com/2011/01/sql-server-compact-40-released.html

答案 2 :(得分:2)

我找到的最好的方法是安装NuGet并使用EF CodeFirst和SQL CE 4软件包,还有一个可以从NuGet安装的示例,其中包含所有数据库创建策略的代码示例。 你可以这样做:

install-package EFCodeFirst.SqlServerCompact
install-package EFCodeFirst.Sample

在项目目录的根目录中应该是一个名为“AppStart_SQLCEEntityFramework.cs”的文件,请参阅示例。

答案 3 :(得分:2)

提供DefaultConnectionProvider的另一种方法是在app.config中添加它。

<entityFramework>
  <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlCeConnectionFactory, EntityFramework">
    <parameters>
      <parameter value="System.Data.SqlServerCe.4.0" />
    </parameters>
  </defaultConnectionFactory>
</entityFramework>