Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 36c1fc3

Browse files
committed
Update docs
1 parent c85934a commit 36c1fc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.OrmLite/OrmLiteWriteApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ public static int Delete<T>(this IDbConnection dbConn, string sqlFilter, object
286286

287287
/// <summary>
288288
/// Delete rows using a SqlFormat filter. E.g:
289-
/// <para>db.Delete&lt;Person&gt;("Age > @age", new { age = 42 })</para>
289+
/// <para>db.Delete(typeof(Person), "Age > @age", new { age = 42 })</para>
290290
/// </summary>
291291
/// <returns>number of rows deleted</returns>
292292
public static int Delete(this IDbConnection dbConn, Type tableType, string sqlFilter, object anonType)

0 commit comments

Comments
 (0)