Updated Delete Data (markdown)

2881099
2023-12-14 19:49:15 +08:00
parent 359e2d4092
commit 6d37516111

@@ -44,6 +44,11 @@ var t3 = fsql.Delete<Topic>(new[] { new Topic { Id = 1, Title = "test" }, new To
var t4 = fsql.Delete<Topic>(new { id = 1 }).ExecuteAffrows();
//DELETE FROM `Topic` WHERE (`Id` = 1)
```
## Dynamic tablename
```csharp
fsql.Delete<Topic>(1).AsTable("Topic_201903").ExecuteAffrows();
```
## Delete Conditions