将ColumnAttribute用于EF模型时出错

时间:2013-04-29 16:13:44

标签: c# asp.net entity-framework webmatrix asp.net-webpages

我已经使用Entity Framework扩展了我的ASP.Net网页应用程序,我已经通过NuGet在Visual Studio中下载了该框架。现在我在尝试为属性分配不同的列名时出现以下错误。

  

CS0246:找不到类型或命名空间名称“列”(是   你错过了使用指令或程序集引用?)

我的模特:

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
using WebMatrix.Data;

namespace Models { 
    public class News
    {
        public int Id { get; set; }

        [Column("d_date")]
        public DateTime Date { get; set; }

        [Column("m_text")]
        public string Text { get; set; }
    }
}

ColumnAttribute应该在System.ComponentModel.DataAnnotations.Schema,所以我无法理解这个问题。

更新 我的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=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <connectionStrings>
    <add name="MyDatasource" connectionString="server=localhost; database=testdb; User Id=***; Password=***;" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <system.web>
    <customErrors mode="Off" />
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
      </assemblies>
    </compilation>
  </system.web>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  </entityFramework>
</configuration>

2 个答案:

答案 0 :(得分:2)

将我的应用程序升级到.Net 4.5之后,它终于按预期工作了。看起来EF 5与.Net 4.0并不完全兼容。

答案 1 :(得分:1)

在Entity Framework 5中,ColumnAttribute将类移动到名为System.ComponentModel.DataAnnotations.Schema的不同名称空间。因此,如果使用EF 5

,则需要添加using语句以在模型类中包含该命名空间
 using System.ComponentModel.DataAnnotations;
 using System.ComponentModel.DataAnnotations.Schema;