2

我试图根据我能找到的所有教程运行一个简单的程序。这是我的测试代码:

程序.cs:

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace EF5WithMySQLCodeFirst
{
    class Program
    {
        static void Main(string[] args)
        {
            using(var context = new DatabaseContext())
            {
                var defaultForum = new Forum { ForumId = 1, Name = "Default", Description="Default forum to test insertion." };
                context.Forums.Add(defaultForum);
                context.SaveChanges();
            }
            Console.ReadKey();
        }

        public class Forum
        {
            public int ForumId { get; set; }
            public string Name { get; set; }
            public string Description { get; set; }
        }

        public class DatabaseContext : DbContext
        {
            public DbSet<Forum> Forums { get; set; }
        }
    }
}

这是 web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" 
             type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
             requirePermission="false" />
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" 
                      sku=".NETFramework,Version=v4.5" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v11.0" />
      </parameters>
    </defaultConnectionFactory>
  </entityFramework>
</configuration>

当我执行代码时,在 using(var context = new DatabaseContext()) 行中,我收到以下错误:

未映射类型“EF5WithMySQLCodeFirst.Program+Forum”。使用 Ignore 方法或 NotMappedAttribute 数据注释检查该类型是否被显式排除。验证该类型是否被定义为一个类,不是原始的、嵌套的或泛型的,并且不是从 EntityObject 继承的。

请忽略 MySQL 这个名称,因为我还没有尝试将它连接到 MySQL,而是让它与 localdb 一起使用。我四处寻找,还没有找到问题的解决方案。

4

1 回答 1

4

我认为它失败了,因为你的Forum类嵌套在你的Program类中。就像错误消息说的那样,实体类型不能嵌套。尝试将其移到外部,使其成为命名空间中的顶级类。

于 2013-05-08T19:35:32.813 回答