我想为我的属性创建一个映射键/值数据注释,这样我将循环实体类并读取所有属性键/值对(列名和值)并传递给存储过程例如)我需要创建如下
<Key:="Empl_Name",Value=mEmployeeName>
Public Property EmployeeName() As String
Get
Return mEmployeeName
End Get
Set(ByVal Value As String)
mEmployeeName = Value
End Set
End Property
为此,我需要使用 system.Attribute 的 ColumnAttribute 类还是有更好的方法来实现?我正在使用.net 4 Vb.net。请建议