We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d202efc commit abea6e8Copy full SHA for abea6e8
docs2/pages/getting-started/tutorial-introduction.md
@@ -92,8 +92,8 @@ context.Customers
92
93
// UPDATE all customers that are inactive for more than two years
94
context.Customers
95
- .Where(x => x.Actif && x.LastLogin < DateTime.Now.AddYears(-2))
96
- .UpdateFromQuery(x => new Customer {Actif = false});
+ .Where(x => x.IsActive && x.LastLogin < DateTime.Now.AddYears(-2))
+ .UpdateFromQuery(x => new Customer {IsActive = false});
97
```
98
99
### Performance Comparisons
0 commit comments