Files
Umbraco-CMS/src/Umbraco.Infrastructure/Persistence/IBulkSqlInsertProvider.cs
Mole 5bd8e32279 Align namespaces in Persistence
Made everything except for repository interface be in the Umbraco.Cms.Infrastructure.Persistence namespace
2021-02-12 13:36:50 +01:00

11 lines
266 B
C#

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