Binding to ADO.NET Data Service
The purpose of this tutorial is to show you how to populate a RadTreeView with data from an ADO.NET Data Service.
This tutorial will use the Northwind database, which can be downloaded from here.
Here will be also examined "best practice" for using RadTreeView with load on demand and ADO.NET Data Service. You can read more information about the load on demand behavior here.
-
Add a new RadTreeView declaration in your XAML and add an event handler for LoadOnDemand event. Also set the following properties to True:
- IsLoadOnDemandEnabled
- IsExpandOnSingleClickEnabled
XAML<telerik:RadTreeView x:Name="radTreeView" Margin="8" IsLoadOnDemandEnabled="True" IsExpandOnSingleClickEnabled="True" LoadOnDemand="radTreeView_LoadOnDemand"/>The RadTreeView will be bound to a data source object, that has a property Categories. When the LoadOnDemand event of RadTreeView is fired, the selected category asynchronously loads its related products.
-
Create a new class named NorthwindDataSource.
C#public class NorthwindDataSource { } -
Add a reference to your ADO.NET Data Service.
-
In the NorthwindDataSource class add a reference to an ObservableCollection of Categories.
-
In the NorthwindDataSource class add a reference to the NorthwindEntities object:
C#private NorthwindEntities northwindEntity; public NorthwindDataSource() { this.northwindEntity = new NorthwindEntities( new Uri( "Enter your service address here" ) ); this.Categories = new ObservableCollection<Categories>(); } public ObservableCollection<Categories> Categories { get; set; } -
Add the following code in the constructor of the NorthwindDataSource. It will make the initial load of all Categories from the database:
C#northwindEntity.Categories.BeginExecute( ( IAsyncResult result ) => EntitiesLoaded<Categories>( result, this.Categories ), northwindEntity.Categories );C#foreach ( Categories c in northwindEntity.Categories.Execute() ) { this.Categories.Add( c ); }C#private static void EntitiesLoaded<T>( IAsyncResult result, Collection<T> entities ) { DataServiceQuery<T> query = result.AsyncState as DataServiceQuery<T>; foreach ( T entity in query.EndExecute( result ) ) { entities.Add( entity ); } }Since the first load of the categories is also asynchronous, it takes some time to display the treeview for the first time. You may consider adding some loading animation in your application.
-
Declare the NorthwindDataSource object as a resource in your application.
XAML<UserControl.Resources> <example:NorthwindDataSource x:Key="DataSource"/> </UserControl.Resources> -
Declare HierarchicalDataTemplates which will describe the RadTreeView structure.
XAML<DataTemplate x:Key="ProductTemplate"> <TextBlock Text="{Binding ProductName}" /> </DataTemplate> <HierarchicalDataTemplate x:Key="CategoryTemplate" ItemsSource="{Binding Products}" ItemTemplate="{StaticResource ProductTemplate}"> <TextBlock Text="{Binding CategoryName}" /> </HierarchicalDataTemplate> -
Update your RadTreeView declaration - set the ItemsSource and ItemTemplate properties.
XAML<telerik:RadTreeView x:Name="radTreeView" Margin="8" IsLoadOnDemandEnabled="True" IsExpandOnSingleClickEnabled="True" LoadOnDemand="radTreeView_LoadOnDemand" ItemTemplate="{StaticResource CategoryTemplate}" ItemsSource="{Binding Source={StaticResource DataSource}, Path=Categories}"/>Run your demo, the result can be seen on the next picture:

If you try to expand any of the loaded categories, the default load on demand animation will be started:

The next step is to handle the load on demand event.
-
Add the following method to the NorthwindDataSource class, which aims to load the products for the expanded category:
C#public static void BeginLoadingProducts( Categories category ) { DataServiceQuery<Products> categoryProducts = northwindEntity .CreateQuery<Products>( string.Format( "Categories({0})/Products", category.CategoryID ) ) .Expand( "Suppliers" ) .Expand( "Categories" ); categoryProducts.BeginExecute( ( IAsyncResult result ) => EntitiesLoaded<Products>( result, category.Products ), categoryProducts ); }C#public static void LoadProducts( Categories category ) { DataServiceQuery<Products> categoryProducts = northwindEntity .CreateQuery<Products>( string.Format( "Categories({0})/Products", category.CategoryID ) ) .Expand( "Suppliers" ) .Expand( "Categories" ); category.Products = new ObservableCollection<Products>(); foreach ( Products p in categoryProducts.Execute() ) { category.Products.Add( p ); } } -
Add the following code to the load on demand event handler, which you declared on step 1.
C#private void radTreeView_LoadOnDemand( object sender, Telerik.Windows.RadRoutedEventArgs e ) { RadTreeViewItem item = e.OriginalSource as RadTreeViewItem; Categories category = item.Item as Categories; if ( category != null ) { NorthwindDataSource.BeginLoadingProducts( category ); } else { item.IsLoadOnDemandEnabled = false; } }When there are no items to add, and you want to prevent the LoadOnDemand event to fire again, set the IsLoadOnDemandEnabled property to False to the RadTreeViewItem that has fired the LoadOnDemand event.
And here is the result:
