/
d3h5
/
Unistream.TestTask
Обзор
Документация
Войти
/
d3h5
/
Unistream.TestTask
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Unistream.TestTask.DataAccessImpl/Interceptors/ForUpdateInterceptor.cs
19 строк
571 B
WORKSTATION-H\mrthe
Первый залив
03 июн 2025, 11:20
03 июн 2025, 11:20
33c9164
Код
Авторство
О чём код?
using System.Data.Common; using Microsoft.EntityFrameworkCore.Diagnostics; namespace Unistream.TestTask.DataAccessImpl.Interceptors; public class ForUpdateInterceptor : DbCommandInterceptor { public override InterceptionResult<DbDataReader> ReaderExecuting( DbCommand command, CommandEventData eventData, InterceptionResult<DbDataReader> result) { if (command.CommandText.Contains("-- FOR UPDATE", StringComparison.InvariantCulture)) { command.CommandText += " FOR UPDATE"; } return result; } }