Hi - thanks for your reply. Yes, I want to show "FirstName LastName" in the drop down when selecting the appropriate FK value. I have just found this post:
which actually works with the following syntax:
@(((dynamic)data).FirstName + " " + ((dynamic)data).LastName)
Cheers!