firebase-database-dotnet
firebase-database-dotnet copied to clipboard
C# library for Firebase Realtime Database.
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...
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...
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?
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...
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...
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...
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 ==...