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 8514299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:49:33+00:00 2026-06-11T04:49:33+00:00

In c# MVC, I need to get the following result (var) in the data

  • 0

In c# MVC, I need to get the following “result” (var) in the data table.

var allCompanies = objentity.ExecuteFunction<SearchAvailEmployees_Result>("SearchAvailEmployees", lstParam.ToArray())
                            .ToList();

var result = from c in allCompanies select new[] { 
                            c.LastName, 
                            c.FirstName, 
                            c.Phone, 
                            c.City, 
                            c.PositionApplied, 
                            c.Status, 
                            Convert.ToString(c.CallDate.Value.ToShortDateString()), 
                            Convert.ToString(c.CellOrPager), 
                            c.Gender 
                        };

I tried the following code but it won’t works. It gives the error as

“Cannot implicitly convert type ‘System.Collections.Generic.IEnumerable’ to ‘System.Collections.Generic.IEnumerable’. An explicit conversion exists (are you missing a cast?)”

IEnumerable<DataRow> query = from c in allCompanies select new[] { 
                                            c.LastName, 
                                            c.FirstName, 
                                            c.Phone, 
                                            c.City, 
                                            c.PositionApplied, 
                                            c.Status, 
                                            Convert.ToString(c.CallDate.Value.ToShortDateString()), 
                                            Convert.ToString(c.CellOrPager), 
                                            c.Gender 
                                        };

DataTable boundTable = query.CopyToDataTable<DataRow>();

Any alternate solution to save the linq query result in data table?

  • 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. Editorial Team
    Editorial Team
    2026-06-11T04:49:34+00:00Added an answer on June 11, 2026 at 4:49 am

    This is how I do it:

    First I declare a new DataTable and add columns, in this :

    DataTable dt = new DataTable();
    dt.Columns.Add("FirstName");
    dt.Columns.Add("LastName");
    DataRow row = null;
    

    Now I execute the desired query:

    var query = from c in allCompanies select { c.LastName, c.FirstName};
    

    Now I simply iterate through the query and fill a DataTable:

    foreach (var rowObj in query)
    {
        row = dt.NewRow();
        dt.Rows.Add(rowObj.FirstName, rowObj.LastName);
    }
    return dt;
    

    Still in my queries I am using ‘join’-statements.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my ASP.net MVC application i need to get the host of the application
I need to get(retrieve) updated cell value in controller. (MVC) So I tried this,
I need to add dynamic controls and get its values in my asp.net mvc
I have created a table in ASP MVC and populate it with data from
I was hoping I could get some help optimizing the following data retrieval. Here
I get the following exception when trying to load an ASP.NET MVC website: Unhandled
Hi everyone new to MVC and I need to trim some %20's off of
I have a web app (MVC) where I need some automatic service to run
I am developing an application in asp.net mvc where i need to have Chat
I need scheduling functionality on my .NET MVC website and I came across Quartz.net

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.