Exemplo n.º 1
0
 public JsonbHandler()
 {
     _textHandler = new TextHandler();
 }
Exemplo n.º 2
0
 internal JsonbHandler(IBackendType backendType) : base(backendType)
 {
     _textHandler = new TextHandler(backendType);
 }
Exemplo n.º 3
0
 internal HstoreHandler(PostgresType postgresType, TypeHandlerRegistry registry) : base(postgresType)
 {
     _textHandler = new TextHandler(postgresType, registry);
 }
Exemplo n.º 4
0
 public HstoreHandler()
 {
     _textHandler = new TextHandler();
 }
Exemplo n.º 5
0
 public HstoreHandler(IBackendType backendType) : base(backendType)
 {
     _textHandler = new TextHandler(backendType);
 }
Exemplo n.º 6
0
 internal JsonbHandler(IBackendType backendType, TypeHandlerRegistry registry) : base(backendType)
 {
     _textHandler = new TextHandler(backendType, registry);
 }