/
aprogrammer
/
yessql
Обзор
Документация
Войти
/
aprogrammer
/
yessql
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/YesSql.Abstractions/ISqlFunction.cs
14 строк
333 B
Sébastien Ros
Generate documentation file (#281)
21 окт 2020, 04:43
Не верифицирован
21 окт 2020, 04:43
ed59267
Код
Авторство
О чём код?
namespace YesSql { /// <summary> /// A class implementing this interface can be used to represent custom function calls in a dialect. /// </summary> public interface ISqlFunction { /// <summary> /// Renders the function. /// </summary> string Render(string[] arguments); } }