Exemplo n.º 1
0
 private void CopyMembers(DataFileColumnMetadata old)
 {
     this.summary = old.summary;
     this.unit = old.unit;
     this.content = old.content;
     this.format = old.format;
 }
Exemplo n.º 2
0
 private void InitializeMembers()
 {
     this.id = 0;
     this.name = null;
     this.dataType = null;
     this.metadata = new DataFileColumnMetadata();
     this.isNullable = false;
     this.isIdentity = false;
     this.isKey = false;
     this.isHidden = false;
 }
Exemplo n.º 3
0
 private void CopyMembers(DataFileColumn old)
 {
     this.id = old.id;
     this.name = old.name;
     this.dataType = old.dataType;
     this.metadata = new DataFileColumnMetadata(old.metadata);
     this.isNullable = old.isNullable;
     this.isIdentity = old.isIdentity;
     this.isKey = old.isKey;
     this.isHidden = old.isHidden;
 }
Exemplo n.º 4
0
 public DataFileColumnMetadata(DataFileColumnMetadata old)
 {
     CopyMembers(old);
 }