2019-12-12 12:55:17 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2021-02-12 13:36:50 +01:00
|
|
|
namespace Umbraco.Cms.Infrastructure.Persistence
|
2019-12-12 12:55:17 +01:00
|
|
|
{
|
|
|
|
|
public interface IBulkSqlInsertProvider
|
|
|
|
|
{
|
2020-04-28 07:01:30 +02:00
|
|
|
string ProviderName { get; }
|
2019-12-19 17:56:48 +11:00
|
|
|
int BulkInsertRecords<T>(IUmbracoDatabase database, IEnumerable<T> records);
|
2019-12-12 12:55:17 +01:00
|
|
|
}
|
|
|
|
|
}
|