Hi, How can I get the attribute values "Column" from fields of a table through code: DbType, CanBeNull ... Example: <Table(Name:="Articulos")> _ Public Class Articulos <Column(DbType:="INT NOT NULL IDENTITY(1,1)", CanBeNull:=False, IsPrimaryKey:=True)> Public ID As Int32 <Column(DbType:="NVarChar(100) NULL", CanBeNull:=True)> Public Nombre As String End Class Something like: Articulos.Nombre.DbType Thanks
Read More...