I have a question.
If I have the tabel:
Persons
Id
FirstName
MiddleName
LastName
Is there a way to get back
PersonEntity oPerson = new PersonEntity(1);
oPerson.FullName;
Offcours I can create a query QryPerson like:
SELECT (Persons.FirstName + " " + Person.MiddleName + " " + Person.LastName) as FullName
And then do:
QryPersonEntity etc.
But is there an easier way?
Thanks
Bjorn