This commit is contained in:
sunkaixuan 2017-08-26 00:37:38 +08:00
parent be29201171
commit 32d2a8b4ee

View File

@ -16,7 +16,7 @@ namespace SqlSugar
protected IDbMaintenance _DbMaintenance;
protected IDbConnection _DbConnection;
protected virtual SugarParameter[] GetParameters(object parameters, PropertyInfo[] propertyInfo,string sqlParameterKeyWord)
protected virtual SugarParameter[] GetParameters(object parameters, PropertyInfo[] propertyInfo, string sqlParameterKeyWord)
{
List<SugarParameter> result = new List<SugarParameter>();
if (parameters != null)
@ -24,13 +24,9 @@ namespace SqlSugar
var entityType = parameters.GetType();
var isDictionary = entityType.IsIn(UtilConstants.DicArraySO, UtilConstants.DicArraySS);
if (isDictionary)
{
DictionaryToParameters(parameters, sqlParameterKeyWord, result, entityType);
}
else
{
ProperyToParameter(parameters, propertyInfo, sqlParameterKeyWord, result, entityType);
}
}
return result.ToArray();
}
@ -38,20 +34,15 @@ namespace SqlSugar
{
PropertyInfo[] properties = null;
if (propertyInfo != null)
{
properties = propertyInfo;
}
else
{
properties = entityType.GetProperties();
}
foreach (PropertyInfo properyty in properties)
{
var value = properyty.GetValue(parameters, null);
if (properyty.PropertyType.IsEnum())
{
value = Convert.ToInt64(value);
}
if (value == null || value.Equals(DateTime.MinValue)) value = DBNull.Value;
if (properyty.Name.ToLower().Contains("hierarchyid"))
{