1 instantiation of DbSchemaRow
System.Data.Common (1)
System\Data\Common\DBSchemaRow.cs (1)
39schemaRows[i] = new DbSchemaRow(schemaTable, dataRows[i]);
30 references to DbSchemaRow
System.Data.Common (30)
System\Data\Common\DBCommandBuilder.cs (23)
39internal ParameterNames(DbCommandBuilder dbCommandBuilder, DbSchemaRow?[] schemaRows) 59var schemaRow = schemaRows[i]; 210internal void GenerateMissingNames(DbSchemaRow?[] schemaRows) 231if (schemaRows[i] is DbSchemaRow schemaRow && schemaRow.AllowDBNull) 319private DbSchemaRow?[]? _dbSchemaRows; 631DbSchemaRow?[] schemaRows = _dbSchemaRows!; 635if (schemaRows[i] is DbSchemaRow schemaRow) 658DbSchemaRow?[]? rows = DbSchemaRow.GetSortedSchemaRows(schemaTable, false); 671DbSchemaRow row = rows[i]!; 782foreach (DbSchemaRow? row in rows) 826DbSchemaRow[] schemaRows = _dbSchemaRows!; 831DbSchemaRow row = schemaRows[i]; 917DbSchemaRow[] schemaRows = _dbSchemaRows!; 920DbSchemaRow row = schemaRows[i]; 1006DbSchemaRow[] schemaRows = _dbSchemaRows!; 1009DbSchemaRow row = schemaRows[i]; 1128DbSchemaRow row, 1181DbSchemaRow row, 1406private static bool IncludeInInsertValues(DbSchemaRow row) 1412private static bool IncludeInUpdateSet(DbSchemaRow row) 1418private bool IncludeInWhereClause(DbSchemaRow row) 1437private bool IncrementWhereCount(DbSchemaRow row)
System\Data\Common\DBSchemaRow.cs (3)
16internal static DbSchemaRow[] GetSortedSchemaRows(DataTable dataTable, bool returnProviderSpecificTypes) 35DbSchemaRow[] schemaRows = new DbSchemaRow[dataRows.Length];
System\Data\Common\DBSchemaTable.cs (1)
54DbSchemaRow.SchemaMappingUnsortedIndex,
System\Data\ProviderBase\SchemaMapping.cs (3)
768DbSchemaRow[] schemaRows = DbSchemaRow.GetSortedSchemaRows(_schemaTable, _dataReader.ReturnProviderSpecificTypes); 805DbSchemaRow schemaRow = schemaRows[sortedIndex];