mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
DbFirst Default BUG
This commit is contained in:
parent
3b55625ba3
commit
2f9c00bded
@ -212,6 +212,10 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
result = Regex.Match(result, @"^\(\'(.+)\'\)$").Groups[1].Value;
|
result = Regex.Match(result, @"^\(\'(.+)\'\)$").Groups[1].Value;
|
||||||
}
|
}
|
||||||
|
if (Regex.IsMatch(result, @"^\(\((.+)\)\)$"))
|
||||||
|
{
|
||||||
|
result = Regex.Match(result, @"^\(\((.+)\)\)$").Groups[1].Value;
|
||||||
|
}
|
||||||
if (Regex.IsMatch(result, @"^\((.+)\)$"))
|
if (Regex.IsMatch(result, @"^\((.+)\)$"))
|
||||||
{
|
{
|
||||||
result = Regex.Match(result, @"^\((.+)\)$").Groups[1].Value;
|
result = Regex.Match(result, @"^\((.+)\)$").Groups[1].Value;
|
||||||
|
@ -25,6 +25,6 @@
|
|||||||
</dependencies>
|
</dependencies>
|
||||||
</metadata>
|
</metadata>
|
||||||
<files>
|
<files>
|
||||||
<file src="D:\MyGit\SqlSugar\Src\Asp.NetCore\SqlServerTest\src\SqlSugar\bin\Debug\netstandard1.6\SqlSugar.dll" target="lib\netstandard1.6"></file>
|
<file src="F:\MyOpenSource\SqlSugar4.XNew\SqlSugar\Src\Asp.NetCore\SqlServerTest\src\SqlSugar\bin\Debug\netstandard1.6\SqlSugar.dll" target="lib\netstandard1.6"></file>
|
||||||
</files>
|
</files>
|
||||||
</package>
|
</package>
|
Loading…
Reference in New Issue
Block a user