You can configure a data source using SchedulerData.mdf that we provide in the \Examples\DataSources subfolder in our installation. You can do so by choosing to add a new datasource to the project:
Then you choose the SchedulerData.mdf file:
And select all required tables into the generated dataset
After the dataset is generated and added to the solution we can refer it as a data source to the scheduler providers. Drop a SchedulerBindingDataSource component to the design surface, and in the Properties property grid you will see the EventProvider and ResourceProvider properties of the component. After expanding the provider properties, you will see a pair of DataSource and DataMember properties. There you can set the appropriate dataset and datatable to read the data from.
Setting the DataSource property:
Setting the DataMember property:
Use the Rebind method of the SchedulerBindingDataSource object if the dataset is filled after applying the event provider data source:
CopyXML
schedulerBindingDataSource1.Rebind();
CopyXML
schedulerBindingDataSource1.Rebind()