postgrest-csharp
postgrest-csharp copied to clipboard
A C# Client library for Postgrest
# Feature request ## Is your feature request related to a problem? Please describe. Hi. I am trying to unit test the this library and I am coming across the...
# Bug report When I tried to delete a row from a table where I forgot to set up a permissive DELETE policy, the client kept returning a successful response...
# Bug report ## Describe the bug An exception occurs in `Table Where(Expression predicate)` if the predicate includes more than 2 or'ed conditions. ## To Reproduce Given the following model...
Several issues have been raised surrounding the use of `QueryFilters` with Postgrest. Notably, [confusion around the `CONTAINS` operator vs. the `IN` operator](https://github.com/supabase-community/supabase-csharp/issues/140) and issues with [`QueryFilter`s not casting criterion in...
I'm trying to filter a database with a method like this: ``` var test = await _client .From() .Where(u => listOfInts.Contains(u.fieldOfTypeInt)) .Get(); ``` However, this give me an error like...
# Bug report ## Describe the bug In supabase have a `Recipes` table with 2 columns: `id` (int8 and primary key) and `Name` (text) So in my C# code I...
Create a table with a PK of type TEXT (weird I know, but It is based on a legacy app) Create a class which implements BaseModel class. Try to fetch...
Re: #76 - Tests should be added that check multiple database column configurations and their associated queries using `QueryFilter` and `LINQ` expressions
# Feature request ## Is your feature request related to a problem? Please describe. Hello, the contains (@>) and contained ( ARRAY[3,1,3] ARRAY[2,2,7] point '(1,1)' point '(1,1)' '{"b":2}'::jsonb '{"b":2}'::jsonb
# Feature request ## Is your feature request related to a problem? Please describe. I'd like the ability to use [EFCore's Scaffold-DbContext](https://learn.microsoft.com/en-us/ef/core/managing-schemas/scaffolding) with this package, so that the entities that...