firebase-database-dotnet icon indicating copy to clipboard operation
firebase-database-dotnet copied to clipboard

C# library for Firebase Realtime Database.

Results 41 firebase-database-dotnet issues
Sort by recently updated
recently updated
newest added

Fix Crash on net6.0-ios Reproduction: https://github.com/VladislavAntonyuk/ContinueOnPC

I forked the code, changed the API key and URL to Realtime Database. Offline works - it doesn't ever sync any record to Realtime Database

Thank you for this awesome package! I have been raking my brain for weeks trying to figure out how to set a custom key when pushing new data to the...

stale

All sort of operation your library adding /.json in the URL see below: ``` public async Task GetStaff() { var result = await FbClient.Child("staff") .OrderByKey() .OnceAsync(); return result.Select(x => new...

stale

I am creating an Id in the class I added and I want to bring the value that has the Id of that number, how do I do it?

stale

I'm facing the problem that I've got multiple "childs" which can be created in offline mode by the user. In my MAUI App I am using dependency injection and my...

stale

Suppose I have a firebase node named "Likes" that contains integer values. How can I increase or decrease the value of this key by one without fetching the value of...

stale

I'm having a class Products, which looks like this: ``` class Products with ChangeNotifier { final String authToken; Products(this.authToken, this._items); List _items = [];// data is fetched from server to...

stale

Hello, I'm working on a real-time database. And I want to know if is there a way to detect if the node has existed? The code below displays the subject...

This problems occurs in version 4.0.7. I haven't tried it with any other versions. Xamarin.Forms version is 5.0.0.229. I have the following subscription: ``` firebaseClient.Child("Products") .AsObservable() .Where(item => (item.Object.uid ==...