I am working with dOOdads in visual basic .net and sql server 2005,
in the database have a field called IMAGEN type in SQL SERVER 2005.
My question is about of this property of the class.
this property of this type is that:
Public Overridable Property IMAGEN() As
Get
Return MyBase.GetUnknown(ColumnNames.IMAGEN)
End Get
Set(ByVal Value As Image)
MyBase.SetUnknown(ColumnNames.IMAGEN, Value)
End Set
End Property
would like the code above.
Thank you.
