From 8780bc7e4ff3e4d5aeb8d838f59f54b30db5253d Mon Sep 17 00:00:00 2001 From: mohammadalikhaloui-hue Date: Tue, 11 Nov 2025 08:51:09 +0000 Subject: [PATCH] Fix typo in 'IsAvtivated' to 'IsActivated' --- Data/DatabaseUpdate.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Data/DatabaseUpdate.md b/Data/DatabaseUpdate.md index 2cdcf55..ae34eb4 100644 --- a/Data/DatabaseUpdate.md +++ b/Data/DatabaseUpdate.md @@ -33,7 +33,7 @@ This overload allows you to update the properties of one entry. ```csharp public void Activate() { - Database.Update(this, x => x.IsAvtivated = true); + Database.Update(this, x => x.IsActivated = true); } ``` @@ -42,7 +42,7 @@ This overload allows you to update the properties of a list of entries in one li ```csharp public void Activate(params IEnumerable employees) { - Database.Update(employees, x => x.IsAvtivated = true); + Database.Update(employees, x => x.IsActivated = true); } ``` @@ -55,8 +55,8 @@ public void Activate() { Database.Update(this, x => { - x.IsAvtivated = true, + x.IsActivated = true, x.ActivationDate = LocalTime.Now }); } -``` \ No newline at end of file +```