diff --git a/nuget/SQLite-net/SQLite-net.csproj b/nuget/SQLite-net/SQLite-net.csproj index 42121720..ef12dbf4 100644 --- a/nuget/SQLite-net/SQLite-net.csproj +++ b/nuget/SQLite-net/SQLite-net.csproj @@ -26,6 +26,7 @@ TRACE;DEBUG;USE_SQLITEPCL_RAW USE_NEW_REFLECTION_API NO_CONCURRENT prompt 4 + true bin\Debug\SQLite-net.xml @@ -36,6 +37,7 @@ TRACE;USE_SQLITEPCL_RAW USE_NEW_REFLECTION_API NO_CONCURRENT prompt 4 + true bin\Release\SQLite-net.xml diff --git a/src/SQLite.cs b/src/SQLite.cs index cb9315cb..96a696d7 100644 --- a/src/SQLite.cs +++ b/src/SQLite.cs @@ -844,6 +844,9 @@ public IEnumerable DeferredQuery(TableMapping map, string query, params /// /// The primary key. /// + /// + /// The TableMapping used to identify the table. + /// /// /// The object with the given primary key. Throws a not found exception /// if the object is not found. @@ -1626,9 +1629,6 @@ public int DeleteAll () /// /// The number of objects deleted. /// - /// - /// The type of objects to delete. - /// public int DeleteAll (TableMapping map) { var query = string.Format ("delete from \"{0}\"", map.TableName);