I am just trying to learn .Net RIA Service, so i am creating one hello world example. Now in domainserviceclass i am using below code
[ServiceOperation]
public string SayHello()
{
return "Hello RIA World!";
}
It is giving me error for reference, i have tried to search on the net but i am unable to identify that which namespace i am missing.
I know it is a very small problem but i am unable to find anything on this error.