public CommandResultSchema(CommandSchema command, string name, CommandResultColumnSchema[] columns, ExtendedProperty[] extendedProperties) : this(command, name, columns) { base._ExtendedProperties = extendedProperties.ToList <ExtendedProperty>(); }
// Methods public CommandResultSchema(CommandSchema command, string name, CommandResultColumnSchema[] columns) { base._Name = name; this._Command = command; this._Columns = new List <CommandResultColumnSchema>(columns); }
public CommandResultColumnSchema(CommandSchema command, string name, DbType dataType, string nativeType, int size, byte precision, int scale, bool allowDBNull, ExtendedProperty[] extendedProperties) : this(command, name, dataType, nativeType, size, precision, scale, allowDBNull) { base._ExtendedProperties = extendedProperties.ToList <ExtendedProperty>(); }
public override bool Equals(object obj) { CommandSchema schema = obj as CommandSchema; return(((schema != null) && schema.Database.Equals(this.Database)) && ((schema.Owner == this.Owner) && (schema.Name == this.Name))); }
public ParameterSchema(CommandSchema command, string name, ParameterDirection direction, DbType dataType, string nativeType, int size, byte precision, int scale, bool allowDBNull, ExtendedProperty[] extendedProperties) : this(command, name, direction, dataType, nativeType, size, precision, scale, allowDBNull) { base._ExtendedProperties = new List <ExtendedProperty>(extendedProperties); }