SQLite.Net-PCL
SQLite.Net-PCL copied to clipboard
return results of class CreateTablesResult
Hello,
I would like to know if there is away to know if a table has been created using CreateTablesResult properties.
I use it like the following to create my tables, and based on whether the table is created or not I want to add some logic.
CreateTablesResult x = await _context.CreateTableAsync<SomeClass>();
Thanks