我试图根据我能找到的所有教程运行一个简单的程序。 这是我的测试代码:
的Program.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>
当我执行代码时,在使用(var context = new DatabaseContext())行时,我收到以下错误:
类型&#39; EF5WithSySQLCodeFirst.Program + Forum&#39;没有映射。校验 使用忽略未明确排除类型 方法或NotMappedAttribute数据注释。验证类型是否 定义为类,不是原始的,嵌套的或通用的,也不是 继承自EntityObject。
请忽略MySQL的名称,因为我还没有尝试将它连接到MySQL而是为了它 使用localdb。我四处搜索,无法解决问题。
答案 0 :(得分:4)
我认为它失败了,因为你的Forum
类嵌套在Program
类中。与错误消息一样,实体类型不能嵌套。尝试将其移到外面,使其成为命名空间中的顶级类。