I want to split a string like Members in table Set and select the result with other fields as a record.
For example, lets assume the Set has 2 fields (ID, Members) and 2 records: (1, "A, B") and (2, "C").
Now I need a Linq query to retrieve records as: (1, A), (1, B), (2,C).
I am using Visual Studio 2008.