1
For example, I have a table where the field in the bank called COD_CLIENTE
, but in the model layer it is ID_CLIENTE
, how to access this value without changing the name of the in the VB.net
?
Partial Public Class CadastroCliente
Public Property nome As String
Public Property contato As String
Public Property tipo As String
Public Property ID_CLIENTE As Nullable(Of Integer)
End Class
Which
framework
data persistence?– rubStackOverflow
Do you use any
ORM
or hand-held access to data?– Richard Dias