diff --git a/Dapper.ProviderTools/BulkCopy.cs b/Dapper.ProviderTools/BulkCopy.cs index 7808f31c3..4cfafe329 100644 --- a/Dapper.ProviderTools/BulkCopy.cs +++ b/Dapper.ProviderTools/BulkCopy.cs @@ -44,11 +44,13 @@ public static BulkCopy Create(DbConnection connection) return bcp; } - /// - /// Provide an external registration for a given connection type - /// - public static void Register(Type type, Func? factory) - => s_bcpFactory[type] = factory; + ///// + ///// Provide an external registration for a given connection type + ///// + //public static void Register(Type type, Func factory) + //{ + // throw new NotImplementedException(); + //} private static readonly ConcurrentDictionary?> s_bcpFactory = new ConcurrentDictionary?>();