From 9e26379d5a3ea1d855819018529af674eea87f4d Mon Sep 17 00:00:00 2001 From: Janie <109517022+Janie06@users.noreply.github.com> Date: Tue, 14 Feb 2023 15:15:13 +0800 Subject: [PATCH] =?UTF-8?q?[WHAT]=20Edit=20Personal=20Info=20save=20[WHY]?= =?UTF-8?q?=20=E9=96=8B=E7=99=BC=20ShowEasy=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 儲存功能修正 --- EuroTran/EasyBL.WEBAPP/ShowEasy/MembersService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EuroTran/EasyBL.WEBAPP/ShowEasy/MembersService.cs b/EuroTran/EasyBL.WEBAPP/ShowEasy/MembersService.cs index 18d965a..bd927a0 100644 --- a/EuroTran/EasyBL.WEBAPP/ShowEasy/MembersService.cs +++ b/EuroTran/EasyBL.WEBAPP/ShowEasy/MembersService.cs @@ -242,6 +242,7 @@ namespace EasyBL.WEBAPP.SYS { var iRel = db.Updateable(MemberDTOtoEntity(Member)) .Where(t1 => t1.Account == Member.Account) + .IgnoreColumns(t1 => t1.MemberPicture) .ExecuteCommand(); srm = new SuccessResponseMessage(null, null); srm.DATA.Add(BLWording.REL, iRel);