2
Answers

How to split the data in linq

chitra

chitra

13y
1.7k
1
sir, in my following query
var fix1 = from future in fixture.Descendants("item").Take(4)
  select (new
  {
  titlee = future.Element("title").Value,
  venue = future.Element("text").Value 
  });
i want to split the venue details, so i return as

  venue = future.Element("text").Value.Split(new char[] { ',' }) 
 
it split the data, but i dont know how to retrieve and assign to repeator control.
 
Answers (2)
Next Recommended Forum