Using markup I can't get data to show in the grid:
<riacontrols:DomainDataSource x:Name="EstimatesData" QueryName="GetUserEstimates" >
<riacontrols:DomainDataSource.DataContext>
<ds:MyDomainContext />
</riacontrols:DomainDataSource.DataContext>
</riacontrols:DomainDataSource>
<datagrid:DataGrid x:Name="EstimatesGrid" ItemsSource="{Binding ElementName=EstimatesData, Path=Data}" />
MyDomainContext has a model UserEstimates with a method GetUserEstimatesQuery.
When the page loads, the breakpoint in GetUserEstimatesQuery does not get hit, the method is not called. There are no errors, what am I missing?
If I write code behind on the page load, it binds OK.