示例#1
0
 public static Param GetColumnYield(Param p, string column)
 {
     p.Value = new Column();
     return(p);
 }
示例#2
0
 public static Param GetDatabaseYield(Param p, string dbName)
 {
     p.Value = new Database();
     return(p);
 }
示例#3
0
 public Param GetTableYield(Param p, string table)
 {
     p.Value = new Table();
     return(p);
 }