Namespace Syncfusion.DataSource.Extensions
Classes
EnumerableExtensions
Provides extension methods for performing basic operations such as sum, average, min , max and sorting on enumerable collections. |
FunctionalExtensions
Functional method extensions |
GroupResult
Class that holds the information of the group like key, count, items and etc. |
PropertyInfoCollection
Determines the set of properties and their information. |
PropertyInfoExtensions
Class that provides the extension methods for the property info. |
QueryableExtensions
Provides extension methods for Queryable source.
var fonts = FontFamily.Families.AsQueryable();
We would normally write Expressions as,
This would sort the names based on alphabetical order. Like so, the Queryable extensions are a set of extension methods that define functions which will generate expressions based on the supplied values to the functions. |