I have a List like,
Class Traking {
public sting TrackID {get;set}
public sting AlertID {get;set} // Comma separated Values
}
TrackID AlertID
1001 101,102,103
1002 201,202,203
1003 301,302,303
AlertID having comma seperated values, Using Linq convet to Like this
TrackID AlertID
1001 101
1001 102
1001 103
1002 201
1002 202
1002 203
1003 301
1003 302
1003 303
Ex:
Turning a Comma Separated string into individual rows
- This done from SQL, the same way need to do in LinQ
I hope understand my problem