System.Data.Common.DbConnection.CreateDbCommand()

Here are the examples of the csharp api class System.Data.Common.DbConnection.CreateDbCommand() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: referencesource
Source File: DBConnection.cs
public DbCommand CreateCommand() {
            return CreateDbCommand();
        }

2. Example

Project: referencesource
Source File: DBConnection.cs
IDbCommand IDbConnection.CreateCommand() {
            return CreateDbCommand();
        }