mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-04 04:37:58 +08:00
Exp to sql same keys bug
This commit is contained in:
parent
269dcc8a12
commit
813678bc24
@ -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; ;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user