mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-18 17:48:11 +08:00
Performance optimization
This commit is contained in:
@@ -27,10 +27,6 @@ namespace SqlSugar
|
||||
|
||||
public static bool? GetConvertBoolean(this IDataRecord dr, int i)
|
||||
{
|
||||
if (dr.IsDBNull(i))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
var reval = dr.GetBoolean(i);
|
||||
return reval;
|
||||
}
|
||||
|
Reference in New Issue
Block a user