From ba85c821ed42b9be49128b73dbe0aa390ed72228 Mon Sep 17 00:00:00 2001 From: YaChengMu <1140049363@qq.com> Date: Sun, 27 Nov 2022 12:15:48 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=9A=E6=97=B6=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E7=94=9F=E6=88=90sql=E8=AF=AD=E5=8F=A5=EF=BC=8C?= =?UTF-8?q?=E5=9C=A8SqlServer=E4=B8=AD=E6=8F=92=E5=85=A5=E4=B8=AD=E6=96=87?= =?UTF-8?q?=E4=B9=B1=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: YaChengMu <1140049363@qq.com> --- framework/Furion.Pure/Schedule/Internal/Penetrates.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Furion.Pure/Schedule/Internal/Penetrates.cs b/framework/Furion.Pure/Schedule/Internal/Penetrates.cs index 1e225fa4cf..b0d42ed3e7 100644 --- a/framework/Furion.Pure/Schedule/Internal/Penetrates.cs +++ b/framework/Furion.Pure/Schedule/Internal/Penetrates.cs @@ -1,4 +1,4 @@ -// MIT License +// MIT License // // Copyright (c) 2020-2022 百小僧, Baiqian Co.,Ltd and Contributors // @@ -180,7 +180,7 @@ internal static class Penetrates /// internal static string GetNoNumberSqlValueOrNull(object obj) { - return obj == null ? "NULL" : $"'{obj}'"; + return obj == null ? "NULL" : $"N'{obj}'"; } /// -- Gitee