Motivation
new OrderParameter($"elements.{Article.PublishDateCodename}", SortOrder.Descending)) is not very nice.
It would be great if OrderParameter (and perhaps some others) allowed specifying the type of the codename parameter.
Proposed solution
new OrderParameter(FieldType.Element, "Article.PublishDateCodename", SortOrder.Descending))
The enum could be defined such as:
enum FieldTypeEnum
{
Element,
System,
....
}
Originally reported in kontent-ai/delivery-sdk-net#241 (comment)
Motivation
new OrderParameter($"elements.{Article.PublishDateCodename}", SortOrder.Descending))is not very nice.It would be great if OrderParameter (and perhaps some others) allowed specifying the type of the codename parameter.
Proposed solution
new OrderParameter(FieldType.Element, "Article.PublishDateCodename", SortOrder.Descending))The enum could be defined such as:
Originally reported in kontent-ai/delivery-sdk-net#241 (comment)