Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Firebase in .NET

I want to implement Firebase into my .NET WPF Desktop Application. I can't find anything useful on the internet about this topic, it seems like it's completely unsupported. There is only a Xamarin NuGet package. Is there any possibility to do this? The goal is to implement Firebas Analytics for several actions the user makes in the app. I would even take the normal REST endpoints if I could find them - they are hidden somewhere...

The question is about Firebase Analytics, not Firebase Admin.

like image 733
Christian Klemm Avatar asked Jan 16 '17 12:01

Christian Klemm


People also ask

Can you use Firebase with C#?

Firebase supports server client libraries for C#, Go, Java, Node.

Can you use Firebase with ASP NET?

Working with databases hosted online has become easier over recent years. The emergence of Database as a Service (DaaS) specifically makes quick integrations much easier.

What is Firebase C#?

Firebase is a set of tools for developers. One of those tools is a Firebase Realtime Database which handles both offline and online storage of your data as well as the synchronization between the two.


2 Answers

You can use existing C# REST libraries like FireSharp or FirebaseSharp or Firebase Database REST API because official libraries do not exist yet.

P.S. Firebase C# library

like image 56
Taras Kovalenko Avatar answered Oct 16 '22 08:10

Taras Kovalenko


Google now provides an official .NET client: Google.Cloud.Firestore

For tips on getting started, see their official documentation.

like image 18
Eric J. Avatar answered Oct 16 '22 10:10

Eric J.