P
Photon
In my DomainService module I have the following; i'd like to simply return a
string back
public string x()
{
return "X";
}
My Call in another module
DomainServiceA a = new DomainServiceA()
string s = a.x();
Problem:
s is always Null
I've seen that you need to put [ServiceOperation] before the method, can't
find it. Then i've seen it's [Invoke], doesn't do it.
Is it not possible to have stuff that doesn't return a 'IQueryable' or
'IEnumerable' back?
--
Joe Reiss
Jackson Creek Software, Inc.
www.emc2library.com
Live Long and Prosper \\//
string back
public string x()
{
return "X";
}
My Call in another module
DomainServiceA a = new DomainServiceA()
string s = a.x();
Problem:
s is always Null
I've seen that you need to put [ServiceOperation] before the method, can't
find it. Then i've seen it's [Invoke], doesn't do it.
Is it not possible to have stuff that doesn't return a 'IQueryable' or
'IEnumerable' back?
--
Joe Reiss
Jackson Creek Software, Inc.
www.emc2library.com
Live Long and Prosper \\//