我想使用Column
下面示例代码中所示的数据注释,但编译器(以及 IntelliSense)似乎不知道该特定数据注释。我在 Visual Studio 2010 中使用 EF 5。我使用 NuGet 安装了 EF 5。和注释正在工作Required
。MaxLength
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Model
{
public class Destination
{
public int DestinationId { get; set; }
[Required]
public string Name { get; set; }
public string Country { get; set; }
[MaxLength(500)]
public string Description { get; set; }
[Column(TypeName="image")]
public byte[] Photo { get; set; }
public List<Lodging> Lodgings { get; set; }
}
}
我错过了什么?