In LightSwitch, how to populate a query parameter select list from a table

In VS LightSwitch, requests can have parameters. When the screen is created, the query parameters are displayed on the screen. You can select a pick list, in which case the field appears as a drop-down list on the screen.

Instead of defining a static select list, how can I read the select list from the table?

+3


source to share


1 answer


I found the answer to my question here: http://social.msdn.microsoft.com/Forums/en-US/lightswitch/thread/c69f23bd-4ccb-4bbf-847f-dc01e0baef07



No, a picklist is a static list of data. If you need a dynamic list of data, you must create a table and add a relation to it wherever you need it. This will allow you to dynamically filter it using queries, eg.

+4


source







All Articles