python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Troubleshooting enums with efcore.pg
Are there any best practices in troubleshooting enums when using with Npgsql.EntityFrameworkCore.PostgreSQL provider? It's just that I don't know where to look anymore.
Here is how I register them:
pu...
Kasbolat Kumakhov
Votes: 0
Answers: 1
C# Npgsql read cursor from procedure output parameter
I'm migration an application from a Oracle DB to a Postgres DB.
There are many procedures implemented that returns via output parameter a RefCursor. Just like this:
string schema = server.SERV...
Bruno Ferreira
Votes: 0
Answers: 1
EF Core and PostgreSQL enum two-way name translation
I am trying to figure out how to enable two-way name translation between postgres DB and EF Core. I have found a link where it is told how values are translated from EF Core to DB, but nothing about f...
tokechu
Votes: 0
Answers: 2
EntityFramework PostgreSQL GIST index for geography column
I'm trying to create a index, like this one:
CREATE INDEX example1_gpx ON example1 USING GIST (geography(geomcol));
Using EF codefirst, I did this on codefirst:
builder.HasIndex(x => new
...
Carlos Rodrigues
Votes: 0
Answers: 1