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

10 lines
215 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Persistence
{
public interface IBulkSqlInsertProvider
{
int BulkInsertRecords<T>(IUmbracoDatabase database, IEnumerable<T> records);
}
}