We use RadDomainDataSource in our Silverlight project. After 1 year idle we get back to the project and found that it doesn't compile. The error message is:
Could not load file or assembly 'OpenRiaServices.DomainServices.Client, Version=2.0.5.0, Culture=neutral, PublicKeyToken=2e0b7ccb1ae5b4c8' or one of its dependencies. The system cannot find the file specified.
The project uses Telerik.Windows.Controls.DomainServices.OpenRia.dll which in turn refers to OpenRiaServices.DomainServices.Client version 2.0.5.0, but there is no such library in either location on PC.
We upgraded the project to the latest "UI for Silverlight R1 2017" but with no luck - it still requires 2.0.5.0 version of OpenRiaServices.DomainServices.Client.
The XAML pattern that causes the error is:
<
telerik:RadDomainDataSource
x:Name
=
"qryER"
AutoLoad
=
"False"
QueryName
=
"GetExamRequestOne"
LoadedData
=
"qryER_LoadedData"
>
<
telerik:RadDomainDataSource.DomainContext
>
<
e:MCMEDDomainContext
/>
</
telerik:RadDomainDataSource.DomainContext
>
<
telerik:RadDomainDataSource.QueryParameters
>
<
telerik:QueryParameter
ParameterName
=
"examReqID"
/>
</
telerik:RadDomainDataSource.QueryParameters
>
</
telerik:RadDomainDataSource
>
Could you give us this library or tell where we can download them?