System.Data.Common.DbDataAdapter.CloneFrom(System.Data.Common.DbDataAdapter)

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

1 Example 7

1. Example

Project: referencesource
Source File: DbDataAdapter.cs
object ICloneable.Clone() { // V1.0.3300, MDAC 69629
#pragma warning disable 618 // ignore obsolete warning about CloneInternals
            DbDataAdapter clone = (DbDataAdapter)CloneInternals();
#pragma warning restore 618
            clone.CloneFrom(this);
            return clone;
        }