用这样的方法对应数据库字段到实体的属性,不知道算不算ORM
我是用下面的方法对应数据库字段到实体的属性,不知道算不算orm
Private f_审批单编号 As String
<wyh_base.NetSys_Expand.ColumnName( "SPD_BH ")> _
Public Property P_审批单编号() As String
Get
Return Me.f_审批单编号
End Get
Set(ByVal value As String)
Me.f_审批单编号 = value
End Set
End Property
------解决方案--------------------orm?
------解决方案--------------------有那么点味道,
想真正实现ORM,路还很长