Hi I am working with Telerik controls and using the EnityDataSource with them. Specifically I am working with a ReadOnlyDataSource. It is working out fine for displaying so far.
Now I am trying to implement an update and following the pattern provided by Telerik of using a property of thier control called OwnerTableView.DataKeyValues. However this is not being populated. I don't know the method it gets populated and I haven't tried this with a DataSource based on a table rather than a view but I did make my view have a unique clustered index. I am wondering if this is a deficiency in the DataSource code in net tiers, or just the View DataSource code, or just some sort of incompatibility with using this type of datasource (would it work with the .net ObjectDataSource?)
Some more background. I am using a view to do the display because I am showing a One-To-One relationship. Specifically I have a table called SecureObject and another table called Zone. The Zone is a type of secured object and its primary key is the the same primary key of SecureObject ( the SecureObject Key is an Identity integer). There are other types of secureObjects but i just want to show Zones on this particular page. Some of the properties of SecureObjects are shared and reside in that table were Zone has some specific properties and relationships with other tables. I haven't made any custom facades or anything was just going to use the standard NetTiers to load the two different objects and save them.
Thanks for any help.