mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-24 13:03:43 +08:00
Exp to sql same keys bug
This commit is contained in:
@@ -612,7 +612,14 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
first = first.Split('(').Last().Trim();
|
first = first.Split('(').Last().Trim();
|
||||||
}
|
}
|
||||||
result.Add(first,last);
|
if (!result.ContainsKey(first))
|
||||||
|
{
|
||||||
|
result.Add(first, last);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//future
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return result; ;
|
return result; ;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user