From 1085ea65dae0c0aca7977472318c81eba72fd0b8 Mon Sep 17 00:00:00 2001 From: AlexLEWIS Date: Fri, 6 Aug 2021 11:47:41 +0800 Subject: [PATCH] Remove `WhereExists`: https://github.com/dotnetcore/FreeSql/commit/db7fe8240379c51f90102b0de4fd3de6a849b8b8 --- Delete-Data.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Delete-Data.md b/Delete-Data.md index f475f18..2e81dc4 100644 --- a/Delete-Data.md +++ b/Delete-Data.md @@ -101,7 +101,6 @@ The benefits of using this method for complex deletion: | Where | \ | Lambda | Expression conditions, only support entity basic members (not including navigation objects) | | Where | \ | string, parms | Raw SQL syntax conditions, `Where("id = @id", new { id = 1 })` | | Where | \ | T1 \| IEnumerable\ | Pass in the entity or collection, and use its primary key as the condition | -| WhereExists | \ | ISelect | 子查询是否存在 | | CommandTimeout | \ | int | Command timeout setting (seconds) | | WithTransaction | \ | DbTransaction | Set transaction object | | WithConnection | \ | DbConnection | Set the connection object |