Skip to content

Commit abea6e8

Browse files
authored
Update tutorial-introduction.md
1 parent d202efc commit abea6e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs2/pages/getting-started/tutorial-introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ context.Customers
9292

9393
// UPDATE all customers that are inactive for more than two years
9494
context.Customers
95-
.Where(x => x.Actif && x.LastLogin < DateTime.Now.AddYears(-2))
96-
.UpdateFromQuery(x => new Customer {Actif = false});
95+
.Where(x => x.IsActive && x.LastLogin < DateTime.Now.AddYears(-2))
96+
.UpdateFromQuery(x => new Customer {IsActive = false});
9797
```
9898

9999
### Performance Comparisons

0 commit comments

Comments
 (0)