From 838adacedde80a003b42dfad3f4afa338ffff265 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=A0=E8=B7=83=20=E6=AF=95?= <18767336279@163.com> Date: Tue, 9 Jan 2024 15:10:08 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9AutofacPropertityModuleRe?= =?UTF-8?q?g=20namespace=20=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Blog.Core.Api/Filter/AutofacPropertityModuleReg.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Blog.Core.Api/Filter/AutofacPropertityModuleReg.cs b/Blog.Core.Api/Filter/AutofacPropertityModuleReg.cs index fe3647ef..605c4f5a 100644 --- a/Blog.Core.Api/Filter/AutofacPropertityModuleReg.cs +++ b/Blog.Core.Api/Filter/AutofacPropertityModuleReg.cs @@ -1,7 +1,7 @@ using Autofac; using Microsoft.AspNetCore.Mvc; -namespace Blog.Core.Extensions +namespace Blog.Core.Filter { public class AutofacPropertityModuleReg : Autofac.Module { From 9131d8907572cc79f51c157e46b109bf42c62627 Mon Sep 17 00:00:00 2001 From: anjoy8 <3143422472@qq.com> Date: Thu, 11 Jan 2024 09:03:27 +0800 Subject: [PATCH 2/3] Update Blog.Core.Common.csproj --- Blog.Core.Common/Blog.Core.Common.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Blog.Core.Common/Blog.Core.Common.csproj b/Blog.Core.Common/Blog.Core.Common.csproj index 7ac6dfb8..aab4f0e8 100644 --- a/Blog.Core.Common/Blog.Core.Common.csproj +++ b/Blog.Core.Common/Blog.Core.Common.csproj @@ -32,7 +32,7 @@ - + From 698e26461c5428488399fa24352d5fde069a3164 Mon Sep 17 00:00:00 2001 From: LemonNoCry <773596523@qq.com> Date: Mon, 15 Jan 2024 16:27:58 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=90=9B=E4=BF=AE=E5=A4=8D=E8=A1=A8?= =?UTF-8?q?=E8=BE=BE=E5=BC=8F=E9=94=99=E8=AF=AF=20fix=20#355?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Blog.Core.Common/Extensions/Extention.Expression.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Blog.Core.Common/Extensions/Extention.Expression.cs b/Blog.Core.Common/Extensions/Extention.Expression.cs index 9b746bd2..84047ef1 100644 --- a/Blog.Core.Common/Extensions/Extention.Expression.cs +++ b/Blog.Core.Common/Extensions/Extention.Expression.cs @@ -204,7 +204,7 @@ public static Expression> And(this Expression> on var parameterReplacer = new ParameterReplaceVisitor(newParameter); var left = parameterReplacer.Visit(one.Body); var right = parameterReplacer.Visit(another.Body); - var body = Expression.And(left, right); + var body = Expression.AndAlso(left, right); return Expression.Lambda>(body, newParameter); }