From 7fa6077c518a87712b55075a875b1ec0a0c9e95f Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Thu, 25 May 2017 17:42:26 -0700 Subject: [PATCH] Fix doc comments --- nuget/SQLite-net/SQLite-net.csproj | 2 ++ src/SQLite.cs | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) 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);