What is the mechanism to use to store data in a UWP application so that it can synchronize data between devices?

Perhaps the ideal solution is SQL Azure Database, but obviously you must always have a connection to the cloud database. If we consider SQLite as a local repository, what mechanism / algorithm to use for periodic synchronization?

Perhaps someone found an example on GitHub, Code.MSDN.microsoft.com, CodePlex and others?

    1 answer 1

    If you are considering Azure as storage, then Azure Mobile Apps can be considered a good option, which allows you to synchronize your cloud database with a local SQLite:
    Windows 10 application with data in the cloud using Azure Mobile Apps
    (See the link Synchronization with the local SQLite database)