Reformat / cleanup
All checks were successful
NuGet Publish / build-and-pack (push) Successful in 46s
NuGet Publish / publish-to-gitea (push) Successful in 56s

This commit is contained in:
Joseph Doherty
2026-02-21 08:10:36 -05:00
parent 4c6aaa5a3f
commit a70d8befae
176 changed files with 50555 additions and 49587 deletions

View File

@@ -1,36 +1,36 @@
using System.Linq.Expressions;
namespace ZB.MOM.WW.CBDD.Core.Query;
using System.Linq.Expressions;
namespace ZB.MOM.WW.CBDD.Core.Query;
internal class QueryModel
{
/// <summary>
/// Gets or sets the filter expression.
/// Gets or sets the filter expression.
/// </summary>
public LambdaExpression? WhereClause { get; set; }
/// <summary>
/// Gets or sets the projection expression.
/// Gets or sets the projection expression.
/// </summary>
public LambdaExpression? SelectClause { get; set; }
/// <summary>
/// Gets or sets the ordering expression.
/// Gets or sets the ordering expression.
/// </summary>
public LambdaExpression? OrderByClause { get; set; }
/// <summary>
/// Gets or sets the maximum number of results to return.
/// Gets or sets the maximum number of results to return.
/// </summary>
public int? Take { get; set; }
/// <summary>
/// Gets or sets the number of results to skip.
/// Gets or sets the number of results to skip.
/// </summary>
public int? Skip { get; set; }
/// <summary>
/// Gets or sets a value indicating whether ordering is descending.
/// Gets or sets a value indicating whether ordering is descending.
/// </summary>
public bool OrderDescending { get; set; }
}
}