MetadataType缺少程序集引用

时间:2011-11-30 17:14:45

标签: asp.net-mvc-3

  using System;
  using System.Collections.Generic;
  using System.Linq;
  using System.Web;
  using System.ComponentModel.DataAnnotations;




  namespace yplaylist.Models
  {
     [MatadataType(typeof(Song_Validation))]
     public partial class Song
     {

     }

     public class Song_Validation
     {



     }
 }

MetadataType突出显示无法找到缺少using指令或程序集引用?我错过了什么?

2 个答案:

答案 0 :(得分:6)

您在参考

中缺少程序集System.ComponentModel.DataAnnotations.dll

答案 1 :(得分:1)

我不确定您是否将代码直接复制到您的问题中,但您的代码中存在拼写错误:

应该是:

[MetadataType(typeof(Song_Validation))]
public partial class Song
{ 
}

您将其拼写为MatadataType