[ColumnAttribute(DbType="NVarChar(100) NOT NULL",
IsPrimaryKey=true,
CanBeNull=false,
Storage="_Name")]
public string Name {get; set;}
'Declaration
<ColumnAttribute(DbType="NVarChar(100) NOT NULL",
IsPrimaryKey=True,
CanBeNull=False,
Storage="_Name")>
Public Property Name As String
'Usage
Dim instance As Configuration
Dim value As String
instance.Name = value
value = instance.Name
[ColumnAttribute(DbType="NVarChar(100) NOT NULL",
IsPrimaryKey=true,
CanBeNull=false,
Storage="_Name")]
public:
property String^ Name {
String^ get();
void set ( String^ value);
}