Synchronization code

This commit is contained in:
sunkaixuan 2025-04-02 22:48:19 +08:00
parent 5a1164e536
commit 1d8c08d895

View File

@ -19,7 +19,8 @@ namespace SqlSugar
{
if (method.Method.Name == "ToList")
{
if (method.Arguments.FirstOrDefault() is { } arg)
var arg = method.Arguments.FirstOrDefault();
if (arg!=null)
{
if (arg is MemberExpression member)
{