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

A C# client library for supabase/realtime.

Results 13 realtime-csharp issues
Sort by recently updated
recently updated
newest added

# Bug report I do not see any events to tables in schema "**NextWare.Concierge.ConciergeServices**". If I rename to "**NextWare_Concierge_ConciergeServices**" it seems to fire events from within the publication. ## Describe...

bug

# Bug report When using realtime C# to send broadcast messages, it works fine as long as you don't await it. If you await the send call, it never returns....

bug

`BaseUrl`, `RequestClientOptions` and `GetHeaders` are net set on hydrated models supplied by the realtime-csharp client. Because these are unset, `Update` and `Delete` calls on a hydrated `BaseModel` will fail. See...

bug

I noticed that sending a Track Event manually whilst already joined to the channel causes both a Join and Leave eventto be raised. However, the Leave event is raised after...

In my options, I am listening only for Updates. ``` TestChannel = client.Realtime.Channel($"MyChannel-{parentID}") TestChannel.Register(New PostgresChangesOptions("public", "TestData", PostgresChangesOptions.ListenType.Updates, $"parent=eq.{parentID}")) Await TestChannel.Subscribe ``` However, I am also receiving Inserts and Deletes. Also,...

bug
upstream-issue

Hello, I'm using this excellent library in a mobile app that subscribes to changes on various supabase tables as follows: ``` Client.Instance.From().On(Supabase.Client.ChannelEventType.Insert,action) Client.Instance.From().On(Supabase.Client.ChannelEventType.Update,action) others... ``` where Condition is a database...

bug

# Bug report ## Describe the bug I am using Supabase **v1.1.1** in a Blazor WebAssembly (WASM) application running on .NET 8. The issue occurs with [this commit](https://github.com/supabase-community/realtime-csharp/commit/b81fc392d7ede05078856326632dfb75f4588b28) in the...

bug

# Chore ## Describe the chore Setup automatic releases using https://github.com/googleapis/release-please ## Additional context Example https://github.com/supabase/supabase-swift/blob/main/.github/workflows/release.yml

This pull request includes several changes to improve the handling of PostgreSQL changes, update channel naming conventions, and enhance testing configurations. The most important changes include the introduction of a...

## Description After successfully subscribing to a Realtime channel with `channel.Subscribe()`, there is approximately a 4-second delay before the subscription actually starts recognizing changes to the subscribed table. This occurs...

bug