From e36fe7fda637f2f98005b92448934a3648e8ad53 Mon Sep 17 00:00:00 2001 From: ManderO9 Date: Tue, 8 Oct 2024 09:35:55 +0100 Subject: [PATCH] fix typo in property name README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0aa5240..39be61e 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ This is perfect for a database like SQL Server where nullability is implicit and ``` This will rewrite your expression to explicitly check for nullables. In the former example, this will be rewritten to: ```csharp -(user != null ? user.Location != null ? user.Location?.AddressLine 1 + (user != null ? user.Location != null ? user.Location.AddressLine2 : null) : null) +(user != null ? user.Location != null ? user.Location?.AddressLine1 + (user != null ? user.Location != null ? user.Location.AddressLine2 : null) : null) ``` Note that using rewrite (not ignore) may increase the actual SQL query complexity being generated with some database providers such as SQL Server