unoplatform / Uno.Samples

A collection of code samples for the Uno Platform
http://platform.uno/
Other
222 stars 111 forks source link

feat: Showcase asynchronous file system initialization in LiteDB sample #817

Closed MartinZikmund closed 2 months ago

MartinZikmund commented 3 months ago

Previously, the sample worked, but only because the initial access to the DB happened as a result of user action (late in the app lifecycle). Trying to access earlier without async initialization would mean the db could not work correctly. Awaiting makes this reliable.