From ce09e68fac090763f744326ad257c55e57d9595d Mon Sep 17 00:00:00 2001 From: FreePhoenix888 Date: Thu, 17 Mar 2022 11:59:53 +0600 Subject: [PATCH] Update setter methods names --- csharp/Platform.Data/ILinksExtensions.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/Platform.Data/ILinksExtensions.cs b/csharp/Platform.Data/ILinksExtensions.cs index 686e4b27..ace8dfeb 100644 --- a/csharp/Platform.Data/ILinksExtensions.cs +++ b/csharp/Platform.Data/ILinksExtensions.cs @@ -23,7 +23,7 @@ public static TLinkAddress Create(this ILinks setter = new Setter(constants.Continue, constants.Break, constants.Null); - links.Create(substitution, setter.SetFirstFromSecondListAndReturnTrue); + links.Create(substitution, setter.SetFirstFromNonNullSecondListAndReturnTrue); return setter.Result; } @@ -31,7 +31,7 @@ public static TLinkAddress Update(this ILinks setter = new(constants.Continue, constants.Break, constants.Null); - links.Update(restriction, substitution, setter.SetFirstFromSecondListAndReturnTrue); + links.Update(restriction, substitution, setter.SetFirstFromNonNullSecondListAndReturnTrue); return setter.Result; } @@ -41,7 +41,7 @@ public static TLinkAddress Delete(this ILinks setter = new Setter(constants.Continue, constants.Break, constants.Null); - links.Delete(restriction, setter.SetFirstFromFirstListAndReturnTrue); + links.Delete(restriction, setter.SetFirstFromNonNullFirstListAndReturnTrue); return setter.Result; }