postgrest-csharp icon indicating copy to clipboard operation
postgrest-csharp copied to clipboard

A C# Client library for Postgrest

Results 20 postgrest-csharp issues
Sort by recently updated
recently updated
newest added

# 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...

enhancement

# 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

# 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...

bug

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...

bug
enhancement

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

# 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...

bug

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...

bug

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

enhancement

# 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...

enhancement