WinUI

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Interface IUnboundExpressionFunc

    Show / Hide Table of Contents

    Interface IUnboundExpressionFunc

    Interface that defines the methods for getting the func for the Unbound column.

    Namespace: Syncfusion.UI.Xaml.Data
    Assembly: Syncfusion.Data.WinUI.dll
    Syntax
    public interface IUnboundExpressionFunc

    Methods

    GetExpressionFunc(String, DataOperation, DataReflectionMode)

    Get the custom expression function to enable runtime customized objects into LINQ queries.

    Declaration
    Expression<Func<string, object, object>> GetExpressionFunc(string propertyName, DataOperation operation, DataReflectionMode reflectionMode)
    Parameters
    Type Name Description
    System.String propertyName

    The property name.

    DataOperation operation

    The data operation.

    DataReflectionMode reflectionMode

    The reflection mode.

    Returns
    Type Description
    System.Linq.Expressions.Expression<System.Func<System.String, System.Object, System.Object>>
    Remarks

    The custom expression function to enable runtime customized objects into LINQ queries.

    GetFunc(String, DataOperation, DataReflectionMode)

    Gets the custom function to enable runtime customized objects over default operations other than LINQ queries.

    Declaration
    Func<string, object, object> GetFunc(string propertyName, DataOperation operation, DataReflectionMode reflectionMode)
    Parameters
    Type Name Description
    System.String propertyName
    DataOperation operation
    DataReflectionMode reflectionMode
    Returns
    Type Description
    System.Func<System.String, System.Object, System.Object>

    The custom function to enable runtime customized objects over default operations other than LINQ queries.

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