Example #1
0
 public CommandResultSchema(CommandSchema command, string name, CommandResultColumnSchema[] columns)
 {
     this.database = command.Database;
     this.command = command;
     this.name = name;
     this.columns = new List<CommandResultColumnSchema>();
     this.columns.AddRange(columns);
 }
Example #2
0
 public CommandResultSchema(CommandSchema command, string name, CommandResultColumnSchema[] columns, ExtendedProperty[] extendedProperties)
     : this(command, name, columns)
 {
     this.extendedProperties = new List<ExtendedProperty>();
     this.extendedProperties.AddRange(extendedProperties);
 }