I have a Silverlight application that is using RIA Services. However, I need a service operation that takes multiple parameters. My operation looks like the following:
public void MyOperation(string userName, bool isActive, string emailAddress)
{
// Do Stuff
}
As it stands now, I get an error that says: Error 263 Domain operation entry 'MyOperation' must take exactly one parameter.
My question is, how do I create a service operation tht takes multiple parameters in a RIA Services service? Thanks!