Advanced Forum Search Results
-
Excellent. Thank you Colin.
Just a few minutes before your post I fired up Fiddler and validated that - so I'm good to go.
Thanks - especially for your accurate and timely response to my question.
-
double post - see above
-
Thank you Colin.
Does this mean each 'UpdateEmployee' call to the domain service is going to be rather chatty isn't it ? Or is that occuring on the client until you call the PersistChangeSet ? Is this 3 calls being made across the wire or just one ?
Let me clarify then: I will want to handle the ...
-
I have a scenario of:
Company with 2 employees.
A page loads for a company - and there is an editable grid for the employees.
I want to be able to submit changes for the company in the event of the employees changing.
It appears however, that it requires me to save each employee with it's own domain context ...
-
Check out SilverlightFX.
Prism is mostly just for composite apps and it doesn't address much of what developers need out of Silverlight.
SilverlightFx (create by MS employee) is more of what your looking for.
-
Thank you.
It is still asking for an association. There isn't a correlating 'association' here.
ie. Customer has CustomerId - int
ie. Address does not have an integer id - and the resulting code gen produces a filter with an equality operation of CustomerID == ''
This forced me to create a 'fake ...
-
Include appears to require a defined association that appears to require a key.
ie. build errors on include attribute:
Error 1 Invalid Include specification for member 'CustomerDTO.Address'. Non-projection includes can only be specified on members with the AssociationAttribute ...
-
I have an entity Customer with an Address
Address is a value object. It has no key.
The result is
class Customer ...
with an Address
When using WCF proxies with Silverlight, it all works fine.
When using with RIA.NET Domain Services, it does not pick up the Address. When I attempt to ...
-
Actually, once I set the 'SortDescriptors' as per above, I get the expected behavior.
Nice catch!
-
If I have 2 records and set pagesize to 10 for example, it gives me a 'next' option taking me to basically an empty grid.
I don't expect to see a 'next' button if there aren't any 'next' to goto :)