Silverlight using WCF Ria with POCOS gives edit operation error

Posted by JD on Stack Overflow See other posts from Stack Overflow or by JD
Published on 2010-04-09T14:30:36Z Indexed on 2010/04/09 14:33 UTC
Read the original article Hit count: 564

Filed under:

Hi,

I have converted an Entity framework project to use POCO objects by removing the entity data model and the domain service and meta data classes.

My silverlight project works as it is showing a datagrid of Employee objects.

I have not added a DataForm and when I modify the "name" property of one of my Employee objects, I get the error:

This EntitySet of type 'TestEmployeesApp.Web.Employee' does not support the 'Edit' operation. The error occurs on validatingProperty() on the class Entity on the client side.

I checked the metadata on the server side, and all my properties have the attribute Editable(true).

I am using Silverlight 3 with VS2008.

JD

© Stack Overflow or respective owner

Related posts about Silverlight