How to list all registered users from a RIA Service?
I tried to expose they by using a IQueryable (from a Domain Class Service), but got the error "The entity type 'User' is exposed by multiple DomainService types." My first clue is that the user is already exposed, but found nothing in code and there is nothing related to 'User' in 'Data Sources' (from silverlight client project). My guess is the RIA already exposes the User object, but only the authenticated one... how to list all?
Thanks in advance,