Skip to content

Commit

Permalink
bugs resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
vahid committed May 19, 2024
1 parent fb63722 commit f6f58fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 01-Core/Jinget.Core/ExtensionMethods/ObjectExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ TypeCode.Double or
continue;
else if (options.IgnoreExpressions && value is Expression)
continue;
else if (options.IgnoreExpr2SQLPagings && value is Paging)
continue;
else if (options.IgnoreExpr2SQLOrderBys)
{
if (value is List<OrderBy>)
Expand All @@ -58,8 +60,6 @@ TypeCode.Double or
property.PropertyType.GenericTypeArguments[0].GetGenericTypeDefinition() == typeof(OrderBy<>))
continue;
}
else if (options.IgnoreExpr2SQLPagings && value is Paging)
continue;
string key = property.Name;
if (!result.ContainsKey(key))
{
Expand Down

0 comments on commit f6f58fe

Please sign in to comment.