Typed DataSet cannot be serialized.
Hi,
I have created a WCF Service. When I start the service I receive the following error.
Type 'dsChamberConfig+ChamberConfigRow' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute.
My interface is defined as follows
[ServiceContract()]
public interface IRemoteComms
{
[OperationContract]
bool InitializeChamber(dsChamberConfig.ChamberConfigRow row);
}
I have tried to include DataContractAttribute and DataMemberAttribute attributes in my dataset class file. I am not sure what to do from here?

