我试图根据我能找到的所有教程运行一个简单的程序。这是我的测试代码:
程序.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 一起使用。我四处寻找,还没有找到问题的解决方案。