C# Posts

Browse all of our latest posts here.

C# Application to Firebase – Inserting Data

Inserting data within Firebase database through use of a C# application. In this post we’ll be going through the inserting of data via a C# application to Googles firebase database. Before you start, ensure you have created a project within Firebase. We will be connecting…

C# Application to Firebase – Updating Data

Updating data within Firebase database through use of a C# application. In this post we will cover updating data in Firebase using a C# application. Do ensure you have created a database project within Firebase and have the link to your database ready. A web…

C# Application to Firebase – Deleting Data

Deleting data within Firebase database through use of a C# application In this post we will go through deleting data in Firebase using C#, the following will flush the entire database project of all its data. A way in which this could be implemented would…

C# Application to Firebase – Working with Authentication

Authenticating a connection to the Firebase database through use of a C# application. Keep your project safe and allow only those you want to have permission to access data within your database. In this post we will be going through one of the ways we…

C# Application to Firebase – Retrieving Updated Data

Retrieving data from Firebase database through use of a C# application. In this post we will be going through the way in which you can go about retrieving updated data in Googles Firebase database using a C# application. Retrieving data has been an extremely large…

C# Application to Firebase – Retrieving the Entire JSON tree

Retrieving the entire JSON tree from a Firebase database through use of a C# application. In this article we will go through how to retrieve all data from Googles Firebase database using a C# application. To begin with we will look at the namespaces being…

C# Application to Firebase – Inserting Data (No Base 64 Keys)

Inserting data within Firebase database through use of a C# application with no base 64 keys. In this post we will be going through the adding of child nodes to the firebase database as well as declaring a parent. This has been a huge request…