/
aprogrammer
/
yessql
Обзор
Документация
Войти
/
aprogrammer
/
yessql
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/YesSql.Core/Commands/IIndexCommand.cs
15 строк
508 B
Sébastien Ros
Removing usage of DynamicParameters (#338)
23 янв 2021, 23:10
Не верифицирован
23 янв 2021, 23:10
615ab51
Код
Авторство
О чём код?
using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Data.Common; using System.Threading.Tasks; namespace YesSql.Commands { public interface IIndexCommand { Task ExecuteAsync(DbConnection connection, DbTransaction transaction, ISqlDialect dialect, ILogger logger); bool AddToBatch(ISqlDialect dialect, List<string> queries, DbCommand batchCommand, List<Action<DbDataReader>> actions, int index); int ExecutionOrder { get; } } }