2 types derived from DbCommandBuilder
System.Data.Odbc (1)
System\Data\Odbc\OdbcCommandBuilder.cs (1)
10public sealed class OdbcCommandBuilder : DbCommandBuilder
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
60public sealed partial class OleDbCommandBuilder : System.Data.Common.DbCommandBuilder
11 references to DbCommandBuilder
netstandard (1)
netstandard.cs (1)
455[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.DbCommandBuilder))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
27[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.DbCommandBuilder))]
System.Data.Common (6)
System\Data\Common\DBCommandBuilder.cs (4)
30private readonly DbCommandBuilder _dbCommandBuilder; 39internal ParameterNames(DbCommandBuilder dbCommandBuilder, DbSchemaRow?[] schemaRows) 386[DefaultValueAttribute(DbCommandBuilder.NameSeparator)] 493[DefaultValueAttribute(DbCommandBuilder.NameSeparator)]
System\Data\Common\DbProviderFactory.cs (2)
42using (DbCommandBuilder? builder = CreateCommandBuilder()) 58public virtual DbCommandBuilder? CreateCommandBuilder() => null;
System.Data.Odbc (2)
Common\System\Data\Common\AdapterUtil.Odbc.cs (1)
582if (d[i].Target is DbCommandBuilder)
System\Data\Odbc\OdbcFactory.cs (1)
21public override DbCommandBuilder CreateCommandBuilder()
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
273public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }