Skip to main content
All docs
V25.2
  • ID
    Max
    Min

    SchedulerBuilder<T>.DataSource(IEnumerable, String[]) Method

    Binds a Scheduler control to a collection: Array, List, or IEnumerable.

    Namespace: DevExtreme.AspNet.Mvc.Builders

    Assembly: DevExtreme.AspNet.Core.dll

    Declaration

    public SchedulerBuilder<T> DataSource(
        IEnumerable data,
        params string[] key
    )

    Parameters

    Name Type Description
    data IEnumerable

    A collection that supplies data for the control.

    key String[]

    An array that contains one or more key field names.

    Returns

    Type Description
    SchedulerBuilder<T>

    A reference to this instance after the method is called.

    Remarks

    This method is a shorthand version of the DataSourceFactory.Array() method. The following examples are equivalent:

    @(Html.DevExtreme().Scheduler()
        .DataSource(Model.MyCollection, "ID")
    )
    
    @(Html.DevExtreme().Scheduler()
        .DataSource(ds => ds.Array()
            .Data(Model.MyCollection)
            .Key("ID")
        )
    )
    

    Refer to CLR Objects for more information.

    See Also