/
aprogrammer
/
yessql
Обзор
Документация
Войти
/
aprogrammer
/
yessql
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/YesSql.Abstractions/ICompiledQuery.cs
16 строк
442 B
Sébastien Ros
Compiled queries (#126)
18 сен 2018, 05:51
Не верифицирован
18 сен 2018, 05:51
9eb4997
Код
Авторство
О чём код?
using System; using System.Linq.Expressions; namespace YesSql { /// <summary> /// And implementation of this interface can be reused /// to prevent multiple evaluations of the same expression /// tree. /// </summary> /// <typeparam name="T">The type of object the query returns.</typeparam> public interface ICompiledQuery<T> where T : class { Expression<Func<IQuery<T>, IQuery<T>>> Query(); } }