February 2019
Intermediate to advanced
445 pages
9h 21m
English
Data access in Xamarin apps often involves a local database and a remote data server accessed via web services. Local data access can be handled in many ways with many products, both open source and proprietary, but the most popular mobile database is SQLite, which is built into iOS and Android. Data can be queried from a SQLite database and manually populated into the UI, but a more sophisticated approach is to use data binding to transfer information automatically between the UI and your data models. ...