Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
MmPicker
Message
From
22/07/2010 17:07:42
Timothy Bryan
Sharpline Consultants
Conroe, Texas, United States
 
 
To
22/07/2010 09:44:51
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Title:
Miscellaneous
Thread ID:
01473463
Message ID:
01473534
Views:
36
>Hello. I have an Employees table with FirstName and LastName fields. I have a stored procedure that splits the "Name" parameter to find the Employee by FirstName and LastName. The tutorial shows how to use the picker with a single field "CustomerID". Does anyone have an example of the picker where they use 2 fields like FirstName and LastName?
>
>Thanks.

You could add a read only property to your entity to display the FullName and then set that as the display property to bind to.
public string FullName
{
     get     { return this.FirstName + " " + this.LastName; }
}
Tim
Timothy Bryan
Previous
Reply
Map
View

Click here to load this message in the networking platform