mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 18:22:23 +08:00
Update net
This commit is contained in:
@@ -409,7 +409,7 @@ namespace SqlSugar
|
|||||||
var whereIndex = QueryBuilder.WhereIndex;
|
var whereIndex = QueryBuilder.WhereIndex;
|
||||||
string parameterName = this.SqlBuilder.SqlParameterKeyWord + "InPara" + whereIndex;
|
string parameterName = this.SqlBuilder.SqlParameterKeyWord + "InPara" + whereIndex;
|
||||||
this.AddParameters(new SugarParameter(parameterName, inValues[0]));
|
this.AddParameters(new SugarParameter(parameterName, inValues[0]));
|
||||||
this.Where(string.Format(QueryBuilder.InTemplate, filed, parameterName));
|
this.Where(string.Format(QueryBuilder.EqualTemplate, filed, parameterName));
|
||||||
QueryBuilder.WhereIndex++;
|
QueryBuilder.WhereIndex++;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -578,9 +578,9 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
return default(T);
|
return default(T);
|
||||||
}
|
}
|
||||||
else if (result.Count == 2)
|
else if (result.Count >= 2)
|
||||||
{
|
{
|
||||||
Check.Exception(true, ".Single() result must not exceed one . You can use.First()");
|
Check.Exception(true, ErrorMessage.GetThrowMessage(".Single() result must not exceed one . You can use.First()", "使用single查询结果集不能大于1,适合主键查询,如果大于1你可以使用Queryable.First"));
|
||||||
return default(T);
|
return default(T);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@@ -207,6 +207,13 @@ namespace SqlSugar
|
|||||||
return "{0} IN ({1}) ";
|
return "{0} IN ({1}) ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public virtual string EqualTemplate
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return "{0} = {1} ";
|
||||||
|
}
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Common Methods
|
#region Common Methods
|
||||||
|
Reference in New Issue
Block a user