2018-02-12 05:18:44 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.DynamicLinq.Fluent
|
|
|
|
|
{
|
2018-03-14 19:17:25 -04:00
|
|
|
|
public class OrderByPart
|
2018-02-12 05:18:44 -05:00
|
|
|
|
{
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
2018-03-14 19:50:43 -04:00
|
|
|
|
public QueryOrderByDirection Direction { get; set; } = QueryOrderByDirection.Ascending;
|
2018-02-12 05:18:44 -05:00
|
|
|
|
|
2018-03-14 19:50:43 -04:00
|
|
|
|
public bool Append { get; set; }
|
2018-02-12 05:18:44 -05:00
|
|
|
|
}
|
|
|
|
|
}
|