oysteinkrog / SQLite.Net-PCL

Simple, powerful, cross-platform SQLite client and ORM - Updated version with PCL support
MIT License
353 stars 162 forks source link

return results of class CreateTablesResult #343

Open Hamza54 opened 7 years ago

Hamza54 commented 7 years ago

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