/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.1.13
src/Npgsql.RawPostgis/PostgisRawHandler.cs
19 строк
597 B
Shay Rojansky
Minor cleanup all around
03 сен 2019, 12:26
03 сен 2019, 12:26
e59da52
Код
Авторство
О чём код?
using Npgsql.PostgresTypes; using Npgsql.TypeHandlers; using Npgsql.TypeHandling; #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member namespace Npgsql.RawPostgis { public class PostgisRawHandlerFactory : NpgsqlTypeHandlerFactory<byte[]> { public override NpgsqlTypeHandler<byte[]> Create(PostgresType postgresType, NpgsqlConnection conn) => new PostgisRawHandler(postgresType); } class PostgisRawHandler : ByteaHandler { public PostgisRawHandler(PostgresType postgresType) : base(postgresType) {} } }