We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Is there a way to define a JsonPath column in ef core model? While doing this generates the correct migration and schema:
[Column("filter_jsonpath", TypeName = "jsonpath")] [StringLength(4096)] public string? Filter_Jsonpath { get; set; }
It does not allow saving a jsonpath query in the database resulting the following exception:
PostgresException: 42804: column "filter_jsonpath" is of type jsonpath but expression is of type character varying
Can I somehow map a string to jsonpath in db?
The text was updated successfully, but these errors were encountered:
Support mapping jsonpath
699f588
Closes npgsql#3044
Sorry for not answering earlier; I'm adding support for this for 9.0.
Sorry, something went wrong.
342c560
Support mapping jsonpath (npgsql#3334)
4be8d30
roji
Successfully merging a pull request may close this issue.
Hi,
Is there a way to define a JsonPath column in ef core model? While doing this generates the correct migration and schema:
It does not allow saving a jsonpath query in the database resulting the following exception:
Can I somehow map a string to jsonpath in db?
The text was updated successfully, but these errors were encountered: