Hi!
I have created a silverlight application, using the silverlight business application template.
I added a ADO.NET entity data model, and created it from scratch in the designer. I then generated a database from the model. The model has a "project" entity and a "client" entity with a many-to-many relationship.
Then, I added a domainservice to my .web project, and selected the entities from my model. In the generated methods for the service, server-side, I have access to the "Client.Projects" property, and also the "Project.Clients" property, but I do not have access to this on the client side, in my silverlight application.
If I change to a one-to-many relationship between the Client and the project, I get access to the property on the silverlight client.
What should I do to get access to the properties on the silverlight client?
Any help would be most appreciated
-Morten