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 +```