RadTagCloud can be bound to all ASP 3.5 DataSource control types, such as EntityDataSource.
<telerik:RadTagCloud ID="RadTagCloud1" runat="server"
DataSourceID="EntityDataSource1"
DataTextField="ProductName"
DataWeightField="UnitPrice"
RenderItemWeight="true">
</telerik:RadTagCloud>
<asp:EntityDataSource ID="EntityDataSource1" runat="server"
ConnectionString="name=NorthwindReadOnlyEntities"
DefaultContainerName="NorthwindReadOnlyEntities"
EntitySetName="Products"
Select="it.[ProductName], it.[UnitPrice]">
</asp:EntityDataSource>
You may also see how to utilize Telerik OpenAccess ORM as a data access layer for
our AJAX controls by visiting the OpenAccess ORM live demos
here
.