TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
chitra
NA
34
20.9k
How to split the data in linq
Sep 20 2011 4:50 AM
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.
Reply
Answers (
2
)
Query difference
Regarding LINQ