I would like to use automatic load on demand with an entity datasource but need to select a value like FullName that would return LastName & ", " & FirstName. I have tried many different approaches with no luck. What is the best way to achieve this?
Thanks in advance,
Bryan Foster
Have you tried this, Select="new (LastName + ", " + FirstName as FullName)", in your EntityDataSource and then setting the DataTextField="FullName" on your RadComboBox? I believe that should work.