为什么IDE无法识别以下代码中的Required
属性?
Imports System.ComponentModel.DataAnnotations
Public Class ShippingDetails
<Required()> _
Public Property Name() As String
Get
Return _Name
End Get
Set(ByVal value As String)
_Name = value
End Set
End Property
Private _Name As String
End Class
错误是:
未定义“必需”类型。
答案 0 :(得分:1)
确保引用System.ComponentModel.DataAnnotations.dll。 RequiredAttribute
也需要.NET 3.5或更高版本。