supabase-csharp
supabase-csharp copied to clipboard
A C# Client library for Supabase
I've got the following query that works fine, and ive figured out how to transpose it to the Dart API, however I can't work out correct inner join syntax for...
Hello everyone! I would firstly like to thank you for the work you have done to create this package. As the title might suggest, I am here to ask something...
As mentioned in the discussion [here](https://github.com/supabase-community/supabase-csharp/discussions/131): The currently released libraries on Nuget do not conform to the naming conventions expected in a nuget package. The Nuget packages for `supabase-csharp` and...
I have these 2 methods: ```c# public async void SubscribeToTournamentChanges(int tournament_id, TournamentChangedHandler handler) { var channelName = "tournaments:" + tournament_id; channels.TryGetValue(channelName, out RealtimeChannel channel); if (channel == null) { channel...
# My winform project was stucked many times and get Websocket error ## Describe the bug I used `var result2 = await _client.From() .Select(s => new object[] { s.Original_URL })...
# Bug report ## Describe the bug For some unknown reason that I'm still trying to debug, my client is losing the connection to the socket. But besides that, once...
I think it would be really great to migrate from `Newtonsoft.Json` to `System.Text.Json`. The latter is more performant than the former, in addition to being the library officially maintained by...
# Feature request Add https://github.com/dotnet/sourcelink support to allow for easier source debugging.
# Feature request ## Is your feature request related to a problem? Please describe. Is it possible to add a scope option to be able to logout "local", "global" or...
# Improve documentation ## Link https://supabase.com/docs/reference/csharp/rpc?example=call-a-stored-procedure ## Describe the problem There is no examples or documentation on handling the return type, or casting them to the data type expected. It...