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

  • SEARCH
  • Home
  • 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
  • 1 View
  • 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

Related Questions

Here is the situation... I am using Visual C++ 2010 Express. I am trying
I'm trying to figure out how to handle this situation. I have the following
This is the situation. I'm trying to provide a service where someone embedds an
I've got the following situation: <h2>This text is <span>pretty awesome</span></h2> I'm trying to give
Strange situation: I am trying to remove some hard coding from my code. There
I have some trouble trying to setup a template to solve address this situation:
Trying to wrap my brain around animations here. Here is my basic situation: _________
Here's the situation I'm trying to solve: I have a main shared layout with
In this situation, I have created a zip file containing search result files, and
i'm trying to implement a Repository and UnitOfWork patterns using Entity Framework. This is

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.