17 references to SchemaOnly
System.Data (17)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (1)
581using (IDataReader dataReader = sourceCommand.ExecuteReader(CommandBehavior.SchemaOnly | CommandBehavior.KeyInfo)){
fx\src\data\System\Data\Common\DbDataAdapter.cs (1)
353using(IDataReader dataReader = command.ExecuteReader(behavior | CommandBehavior.SchemaOnly | CommandBehavior.KeyInfo)) {
fx\src\data\System\Data\Odbc\OdbcCommand.cs (4)
606localReader.IsBehavior(CommandBehavior.SchemaOnly)) { 642if(!localReader.IsBehavior(CommandBehavior.SchemaOnly)) { 647if((localReader.IsBehavior(CommandBehavior.KeyInfo) || localReader.IsBehavior(CommandBehavior.SchemaOnly)) 746if(!localReader.IsBehavior(CommandBehavior.SchemaOnly)) {
fx\src\data\System\Data\Odbc\OdbcDataReader.cs (1)
1601if (_noMoreRows || _noMoreResults || IsCommandBehavior(CommandBehavior.SchemaOnly))
fx\src\data\System\Data\OleDb\OleDbCommand.cs (1)
719if (0 != (CommandBehavior.SchemaOnly & this.commandBehavior)) {
fx\src\data\System\Data\SqlClient\SqlCommand.cs (8)
4389bool inSchema = (0 != (cmdBehavior & CommandBehavior.SchemaOnly)); 5650bool inSchema = (0 != (behavior & CommandBehavior.SchemaOnly)); 5903if ((System.Data.CommandBehavior.SchemaOnly == (behavior & CommandBehavior.SchemaOnly)) || 5914if (System.Data.CommandBehavior.SchemaOnly == (behavior & CommandBehavior.SchemaOnly)) { 5926if (System.Data.CommandBehavior.SchemaOnly == (behavior & CommandBehavior.SchemaOnly)) {
fx\src\data\System\Data\SqlClient\SqlCommandBuilder.cs (1)
283using (SqlDataReader dataReader = sqlCommand.ExecuteReader(CommandBehavior.SchemaOnly | CommandBehavior.KeyInfo)){