Newbee question here:
Using SelfServicing,
I have a ClientEntity, which contains a field AgentId, which may be null,
and yes, AgentId is a foreign key pointing to a table Agent (duh...)
So I do a:
client = new ClientEntity(clientId); // this works.
and then I want to use:
if (client.AgentId == null)
but... that does not work
I hope you get the idea.
Have been looking at the helpfiles a bit, but can't seem to find this one real quick.