Files
Umbraco-CMS/src/Umbraco.Infrastructure/Persistence/IBulkSqlInsertProvider.cs

11 lines
266 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Umbraco.Cms.Infrastructure.Persistence
{
public interface IBulkSqlInsertProvider
{
2020-04-28 07:01:30 +02:00
string ProviderName { get; }
int BulkInsertRecords<T>(IUmbracoDatabase database, IEnumerable<T> records);
}
}