Ejemplo n.º 1
0
 public Database()
 {
     SpecifiedPropertyUpdater.Register(this);
     Tables    = new ArrayAdapter <Table>(this, "Table");
     Functions = new ArrayAdapter <Function>(this, "Function");
 }
Ejemplo n.º 2
0
 public Table()
 {
     Type = new Type();
     SpecifiedPropertyUpdater.Register(this);
 }
Ejemplo n.º 3
0
 public TableFunctionParameter()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
Ejemplo n.º 4
0
 public TableFunctionReturn()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
Ejemplo n.º 5
0
 public Parameter()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
Ejemplo n.º 6
0
 public Return()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
Ejemplo n.º 7
0
 public Connection()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
Ejemplo n.º 8
0
 public Column()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
Ejemplo n.º 9
0
 public Association()
 {
     SpecifiedPropertyUpdater.Register(this);
     TheseKeys = new CsvArrayAdapter(this, "ThisKey");
     OtherKeys = new CsvArrayAdapter(this, "OtherKey");
 }
Ejemplo n.º 10
0
 public Function()
 {
     SpecifiedPropertyUpdater.Register(this);
     Parameters = new ArrayAdapter <Parameter>(this, "Parameter");
 }
Ejemplo n.º 11
0
 public Type()
 {
     SpecifiedPropertyUpdater.Register(this);
     Columns      = new ArrayAdapter <Column>(this, "Items");
     Associations = new ArrayAdapter <Association>(this, "Items");
 }