Skip to content

Commit

Permalink
v3.2.701-preview20230830
Browse files Browse the repository at this point in the history
  • Loading branch information
2881099 committed Aug 28, 2023
1 parent 925ba92 commit 25b261f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FreeSql/FreeSqlBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ public IFreeSql<TMark> Build<TMark>()
return Expression.IfThenElse(
Expression.TypeIs(valueExp, type2),
Expression.Return(returnTarget, valueExp),
Expression.Return(returnTarget, Expression.Convert(valueExpRet, typeof(object)))
Expression.Return(returnTarget, Expression.Convert(valueExpRet, typeof(object))) //此时不能设置 type2
);
}
return null;
Expand Down

0 comments on commit 25b261f

Please sign in to comment.