Updated Update Data (markdown)

2881099
2023-12-14 19:52:34 +08:00
parent a7c1c4f734
commit 8e85fedf5e

@@ -29,6 +29,12 @@ fsql.Update<Topic>(object dywhere)
* `new[] { TopicObject1, TopicObject2 }`
* `new { id = 1 }`
## Dynamic tablename
```csharp
fsql.Update<Topic>(1).AsTable("Topic_201903").ExecuteAffrows();
```
## 1. Update the specified column
```csharp
fsql.Update<Topic>(1)