SQLite.Net-PCL
SQLite.Net-PCL copied to clipboard
Simple, powerful, cross-platform SQLite client and ORM - Updated version with PCL support
The ReadMe document shows the Insert() command returning an object and being able to get the primary key from the auto-incremented field (see below) , but I only see a...
Good afternoon, Using Task.WhenAll for creating tables asynchronously (CreateTableAsync) works well, but doing the same thing for Inserting data doesn't (InsertAsync). Short example: `var task1 = _connection.InsertAsync(data1);` `var task2 =...
Is there any particular reason a constraint exception is not logged with the real constraint (and parameter values) in order to detect the real issue ? I would like to...
We are dealing with a cross-library exception on our project. Short and sweet: we use AzureMobileServices to handle most of our data in our offline application. However, on occasion, we...
`DateTime` types that are stored as strings should mimick the behavior of dates stored as ticks. Currently when requesting a date from a db connection where dates are stored as...
Because a documentation is missing (#306), I need to ask you some questions: 1. What are `tableMappings`? 2. What are `extraTypeMappings`? 3. For what is the `IContractResolver`? It would be...
I have a requirement of deleting the database when the logout action happens. I can't seem to find any delete database method, and maybe that's OK but when manually try...
I'm using `InsertAll` to add some entries to a table. Thereby I'm testing how the database behaves if simultaneous tasks wants to write to it. I tested it on different...
Do you have a documentation page? I cannot find it.
I'm trying to use the Ignore Attribute to filter a property that shouldn't be generated as a column but the CreateTable methods still tries to leverage this property. Could the...