Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 42903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:24:39+00:00 2026-05-10T15:24:39+00:00

In this situation I am trying to perform a data import from an XML

  • 0

In this situation I am trying to perform a data import from an XML file to a database using LINQ to XML and LINQ to SQL.

Here’s my LINQ data model:

public struct Page {     public string Name;     public char Status;     public EntitySet<PageContent> PageContents;  } public struct PageContent {     public string Content;     public string Username;     public DateTime DateTime; } 

Basically what I’m trying to do is write a query that will give me a data structure that I can just submit to my LINQ Data Context.

IEnumerable<Page> pages = from el in doc.Descendants()                           where el.Name.LocalName == 'page'                           select new Page()                 {                     Name = el.Elements().Where(e => e.Name.LocalName == 'title').First().Value,                     Status = 'N',                     PageContents = (from pc in el.Elements()                                     where pc.Name.LocalName == 'revision'                                     select new PageContent()                                     {                                        Content = pc.Elements().Where(e => e.Name.LocalName=='text').First().Value,                                        Username = pc.Elements().Where(e => e.Name.LocalName == 'contributor').First().Elements().Where(e => e.Name.LocalName == 'username').First().Value,                                        DateTime = DateTime.Parse(pc.Elements().Where(e => e.Name.LocalName == 'timestamp').First().Value)                                     }).ToList()                 }; 

The problem is in the sub-query. I have to somehow get my object collection into the EntitySet container. I can’t cast it (oh lord how I’ve tried) and there’s no EntitySet() constructor that would seem to help.

So, can I write a LINQ query that will populate the EntitySet<PageContent> data with my IEnumerable<Page> data?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T15:24:40+00:00Added an answer on May 10, 2026 at 3:24 pm

    you can construct your entity set from a IEnumerable using a helper class, something like:

    public static class EntityCollectionHelper {     public static EntitySet<T> ToEntitySet<T>(this IEnumerable<T> source) where T:class     {         EntitySet<T> set = new EntitySet<T>();         set.AddRange(source);         return set;     } } 

    and use it like so :

    PageContents = (from pc in el.Elements()                                 where pc.Name.LocalName == 'revision'                                 select new PageContent()                                 {                                    Content = pc.Elements().Where(e => e.Name.LocalName=='text').First().Value,                                    Username = pc.Elements().Where(e => e.Name.LocalName == 'contributor').First().Elements().Where(e => e.Name.LocalName == 'username').First().Value,                                    DateTime = DateTime.Parse(pc.Elements().Where(e => e.Name.LocalName == 'timestamp').First().Value)                                 }).ToEntitySet() 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 84k
  • Answers 84k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer There was a similar question on how to achieve this… May 11, 2026 at 5:04 pm
  • Editorial Team
    Editorial Team added an answer I took a look at liveQuery for you. Here's what… May 11, 2026 at 5:04 pm
  • Editorial Team
    Editorial Team added an answer The solution can implicitly be found here: Solution May 11, 2026 at 5:04 pm

Related Questions

I have a VB6 application which works with datetime values in SQL Server (which
I've been trying to calculate all the unique permutations for a very long word
I'm trying to show someone a use for interfaces in a crazy situation they've
I am working with a generic data structure, say MyGeneric<Type> . There is a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.