System.Data.Common.ADP.Provider(string)

Here are the examples of the csharp api class System.Data.Common.ADP.Provider(string) 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: AdapterUtil.cs
static internal InvalidOperationException TransactionConnectionMismatch() {
            return Provider(Res.GetString(Res.ADP_TransactionConnectionMismatch));
        }

2. Example

Project: referencesource
Source File: AdapterUtil.cs
static internal InvalidOperationException TransactionCompletedButNotDisposed()
        {
            return Provider(Res.GetString(Res.ADP_TransactionCompletedButNotDisposed));
        }

3. Example

Project: referencesource
Source File: AdapterUtil.cs
static internal InvalidOperationException TransactionRequired(string method) {
            return Provider(Res.GetString(Res.ADP_TransactionRequired, method));
        }

4. Example

Project: referencesource
Source File: AdapterUtil.cs
static internal InvalidOperationException MissingSelectCommand(string method) {
            return Provider(Res.GetString(Res.ADP_MissingSelectCommand, method));
        }