Ejemplo n.º 1
0
 public StringNullField(DatabaseObject obj, string columnName, int size, AllowStringType allowType = AllowStringType.SimpleText)
     : base(obj, columnName, true)
 {
     AllowType = allowType;
     _value    = null;
     Size      = size;
 }
Ejemplo n.º 2
0
 public StringField(DatabaseObject obj, string columnName, int size, AllowStringType allowType = AllowStringType.SimpleText)
     : base(obj, columnName, false)
 {
     _value    = string.Empty;
     AllowType = allowType;
     Size      = size;
 }
Ejemplo n.º 3
0
 public StringListField(DatabaseObject obj, string columnName, AllowStringType allowType = AllowStringType.SimpleText)
     : base(obj, columnName, false)
 {
     AllowType = allowType;
     _value    = new List <string>();
 }