From 725994008b43f13a3acf289ae5b68889b826e1e3 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Sat, 25 Mar 2023 17:13:54 +0800 Subject: [PATCH] - --- Src/Asp.Net/SqlSugar/Entities/DefaultCustom.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Asp.Net/SqlSugar/Entities/DefaultCustom.cs b/Src/Asp.Net/SqlSugar/Entities/DefaultCustom.cs index 65581276d..8341d9490 100644 --- a/Src/Asp.Net/SqlSugar/Entities/DefaultCustom.cs +++ b/Src/Asp.Net/SqlSugar/Entities/DefaultCustom.cs @@ -38,7 +38,7 @@ namespace SqlSugar.DbConvert { public SugarParameter ParameterConverter(object columnValue, int columnIndex) { - var name = "@MyEnmu" + columnIndex; + var name = "@Common" + columnIndex; Type undertype = SqlSugar.UtilMethods.GetUnderType(typeof(T));//获取没有nullable的枚举类型 return new SugarParameter(name, columnValue, undertype); }