menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Namespace Syncfusion.DataSource.Extensions - WindowsForms API Reference | Syncfusion

    Show / Hide Table of Contents

    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,

    var names = new string[] {"Tony", "Al",
    "Sean", "Elia"}.AsQueryable();
    names.OrderBy(n=>n);

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved