jnoellsch / ektron-fluentapi

Adds a fluent API over the existing Ektron Framework API to increase code readability and discoverability
MIT License
2 stars 0 forks source link

Project Description

Adds a fluent API over the existing Ektron Framework API for configuring the most common criteria objects.

var criteria = new ContentCriteria()
  .FilteredBy(ContentProperty.Title).NotIn("Blah")
  .Recursive()
  .WithMetadata()
  .MaxItems()