Atlas MongoDB with .net maui Realm
Hello, I am trying to create an Android app that includes both administrator and user functionalities. The administrator should be able to add training data to the database, and users should be able to retrieve that data. However, I am having difficulty finding tutorials that cover these specific aspects. Can you please help me?
5 Replies
Can you be a bit more specific? Which specific aspects?
i don't know how to start, but i need to make CRUD that will like add trainings from administrator account and receive those training on users account when they step into trainings gui on my mobile app and was wondering about minimal api with db there? but heard of the way to first create local database using postgresql and then somehow make it online db that i will use with simple queries? to be honest iam working with c# creating offline games and desktop application and iam really clueless how to start with online app
You will need some kind of backand server running an WebAPI. Against that your users will Authenticate somehow.
As of databases and development. I guess the simplest way to start there is to use EFCore and some locally running database. Or even an SQLite DB, which simply consists out a single file.
so maybe i can create minimalAPI? and just work with that using endpoints? but then how to deploy that api online and how to work with local db so it will send datas online
The database will have to be online as well later on.
You will have to run both on some server.
A local DB is only for testing.