From c5cb0725f8c4635d1309a2438bd13744b21187eb Mon Sep 17 00:00:00 2001 From: 2881099 <2881099@users.noreply.github.com> Date: Wed, 19 Mar 2025 23:00:36 +0800 Subject: [PATCH] =?UTF-8?q?Updated=20=E6=9B=B4=E6=96=B0=E6=97=A5=E5=BF=97?= =?UTF-8?q?=20(markdown)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 更新日志.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/更新日志.md b/更新日志.md index d94c651..9958277 100644 --- a/更新日志.md +++ b/更新日志.md @@ -1,5 +1,16 @@ 大约每三个月一次版本号,暂时以修复 bug 为主 +## v3.5.109 + +- 忧化 GroupBySelf.Where 自动转 having; +- 忧化 FreeSql.Provider.PostgreSQL IPostgreSQLProviderOptions 多态参数接口,设置 InsertOrUpdate 采用 MERGE INTO; + +在 FreeSqlBuilder().Build() 之后设置如下: + +```csharp +(fsql as IPostgreSQLProviderOptions).UseMergeInto = true; +``` + ## v3.5.108 - 修复 DbSet/Repository CompareState 报错的问题;#1994