From 2621ec89d0010786ae5b82785b14e5fc94e777df Mon Sep 17 00:00:00 2001 From: Koen Date: Fri, 5 Nov 2021 06:02:21 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1631029..e7bc10d 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ This will rewrite your expression to explicitly check for nullables. In the form ```csharp (user != null ? user.Location != nulll ? user.Location?.AddressLine 1 + (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 SQLServer +Note that using rewrite (not ignore) may increase the actual SQL query complexity being generated with some database providers such as SQL Server #### How does this relate to [Expressionify](https://github.com/ClaveConsulting/Expressionify)? Expressionify is a project that was launched before this project. It has some overlapping features and uses similar approaches. When I first published this project, I was not aware of its existance so shame on me. Currently Expressionify targets a more focusses scope of what this project is doing and thereby it seems to be more limiting in its capabilities. Check them out though!