We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e44e68f commit 52b030dCopy full SHA for 52b030d
MyApp/_pages/ormlite/apis/update.md
@@ -137,7 +137,7 @@ var updateFields = new Dictionary<string,object> {
137
[nameof(Person.FirstName)] = "JJ",
138
};
139
140
-db.UpdateOnlyFields<Person>(updateFields, p => p.LastName == "Hendrix");
+db.UpdateOnly<Person>(updateFields, p => p.LastName == "Hendrix");
141
```
142
143
Using a typed SQL Expression:
0 commit comments