DataStorage.cs 207 B

123456789
  1. // Remove when fully integrated
  2. namespace System.Data.Common {
  3. abstract internal class DataStorage {
  4. internal static bool IsSqlType(object storageType) {
  5. throw new NotImplementedException ();
  6. }
  7. }
  8. }