No idea what I'm doing wrong, but whenever I enable enableautomaticloadondemand, I get this error:
Line: 3747
Error: Sys.InvalidOperationException: '_lodIsAutomatic' is not a property or an existing field.
My code:
Line: 3747
Error: Sys.InvalidOperationException: '_lodIsAutomatic' is not a property or an existing field.
My code:
<telerik:RadComboBox ID="RadComboBoxProviders" Runat="server" height="200px" EnableAutomaticLoadOnDemand="true" DataSourceID="LinqDataSourceProviders" DataTextField="Name" EmptyMessage="Select Provider" ItemsPerRequest="10" EnableVirtualScrolling="true" DataValueField="ProviderId" Skin="Web20"> </telerik:RadComboBox> <asp:LinqDataSource ID="LinqDataSourceProviders" runat="server" ContextTypeName="ClinicalDataContext" EntityTypeName="" Select="new (Name, Street1, City, State, ProviderId)" TableName="ExternalProviders"> </asp:LinqDataSource>