Xamarin Forms Currency Application

Hello friends. In this article, we will make a simple application with Xamarin Forms. In this application, we will instantly take the exchange rates from a website and show them on the screen. At the same time, there will be a refresh feature in the…

Xamarin Online Database Operations with Web Service [Part 3]

We have come to the last part of the process that we will do with our online database with Xamarin. So far we have created a Mobile App Quickstart project in Azure. In this project, we created a database to use SQL, not SQLite, and…

Xamarin Online Database Operations with Web Service [Part 2]

As I noted in Part 1, the data link page we clicked on will say "SQLite can not be used for efficient production". We need to add a data link from this page. We will add a SQL database by pressing the "Add" button. The…

Updating the Database with Code First
C#

Updating the database with Code First is quite difficult. We need to use Migration for this. In our project we have created, we first open the Package Manager Console. Here we type Enable-Migrations and press the enter key. I said that because I enabled it…