System.Data.Common.DbCommand.ExecuteDbDataReader(System.Data.CommandBehavior)

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

4 Examples 7

1. Example

Project: referencesource
Source File: DBCommand.cs
View license
public DbDataReader ExecuteReader() {
            return (DbDataReader)ExecuteDbDataReader(CommandBehavior.Default);
        }

2. Example

Project: referencesource
Source File: DBCommand.cs
View license
IDataReader IDbCommand.ExecuteReader() {
            return (DbDataReader)ExecuteDbDataReader(CommandBehavior.Default);
        }

3. Example

Project: referencesource
Source File: DBCommand.cs
View license
public DbDataReader ExecuteReader(CommandBehavior behavior){
            return (DbDataReader)ExecuteDbDataReader(behavior);
        }

4. Example

Project: referencesource
Source File: DBCommand.cs
View license
IDataReader IDbCommand.ExecuteReader(CommandBehavior behavior) {
            return (DbDataReader)ExecuteDbDataReader(behavior);
        }