Beispiel #1
0
 /// <summary>
 /// 构造
 /// </summary>
 public TableFunctionReturn()
 {
     SpecifiedHelper.Register(this);
 }
Beispiel #2
0
 /// <summary>
 ///
 /// </summary>
 public Return()
 {
     SpecifiedHelper.Register(this);
 }
Beispiel #3
0
 /// <summary>
 ///
 /// </summary>
 public TableFunctionParameter()
 {
     SpecifiedHelper.Register(this);
 }
Beispiel #4
0
 /// <summary>
 /// 列
 /// </summary>
 public Column()
 {
     SpecifiedHelper.Register(this);
 }
Beispiel #5
0
 /// <summary>
 ///
 /// </summary>
 public Connection()
 {
     SpecifiedHelper.Register(this);
 }
Beispiel #6
0
 /// <summary>
 ///
 /// </summary>
 public Association()
 {
     SpecifiedHelper.Register(this);
 }
Beispiel #7
0
 /// <summary>
 ///
 /// </summary>
 public Function()
 {
     SpecifiedHelper.Register(this);
     Parameters = new ArrayHelper <Parameter>(this, "Parameter");
 }
Beispiel #8
0
 /// <summary>
 ///
 /// </summary>
 public Type()
 {
     SpecifiedHelper.Register(this);
     Columns      = new ArrayHelper <Column>(this, "Items");
     Associations = new ArrayHelper <Association>(this, "Items");
 }
Beispiel #9
0
 /// <summary>
 ///
 /// </summary>
 public Table()
 {
     Type = new Type();
     SpecifiedHelper.Register(this);
 }
Beispiel #10
0
 /// <summary>
 ///
 /// </summary>
 public Database()
 {
     SpecifiedHelper.Register(this);
     Tables    = new ArrayHelper <Table>(this, "Table");
     Functions = new ArrayHelper <Function>(this, "Function");
 }