Home > Software design >  How to implement database on IOS app using xamarin?
How to implement database on IOS app using xamarin?

Time:11-13

So I am building an simple IOS app using xamarin. It is going to be a simple intern scheduler app for our employees.

I am wondering how to implement a database to store data such as TIME, DESCRIPTION and sync these data across all IOS devices that has this app installed. Only logged user with ADMIN rights can modify TIME and DESCRIPTION values.

Any idea which database can I use?

CodePudding user response:

You can try using mysql database in your app.like this question shows How to connect Xamarin.Forms app to mysql database without webservices

Or choose Azure Cosmos DB Document Database, here is a document about it https://docs.microsoft.com/en-us/xamarin/xamarin-forms/data-cloud/azure-services/azure-cosmosdb

  • Related