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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:44:03+00:00 2026-05-25T12:44:03+00:00

I have a result set that might look like this: ID (no column name)

  • 0

I have a result set that might look like this:

ID    (no column name)  anotherID
----  ----------------  ----------
1        super            3
1        super            4
3        duper            6
4        really           7
4        really           8

I have 2 issues:

First: How do I use dapper with a column with no name?

Second: I want to have a parent child relationship such that I get 3 objects each with a list of anotherID’s for example:

public class MyObject
{
   public int ID
   public string Name
   public int[] Children
}
  • 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-05-25T12:44:04+00:00Added an answer on May 25, 2026 at 12:44 pm

    Well, un-named columns are not supported by dapper. I never really saw a reason for them.

    I guess we could build support for:

    class Foo { [ColumnNumber(1)] public string Name {get;set;} }
    

    The trouble is that it introduces a very fragile method of querying which I strongly dislike, passing a directive to Query is just as clunky.

    However, if you are happy to change the way you grab the results you could work around this.

    var grid = QueryMultiple(@"set nocount on 
    declare @t table(Id int, Name nvarchar(max), AnotherId int)
    
    insert @t
    exec proc
    
    set nocount off 
    select Id, Name from @t
    select Id, AnotherId from @t
    ");
    

    Then use the technique here to multi map: Multi-Mapper to create object hierarchy

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

Sidebar

Related Questions

I have a SOAP result set that the nuSoap extension has turned into a
I have a query that returns a result set similar to the one below:
I have a MYSQL stored procedure SP1() that returns a result set. I want
Suppose I have a SELECT statement that returns some set of results. Is there
I have a result of a db query in java.sql.ResultSet that needs to be
Given that I have this resultset structure (superfluous fields have been stripped) Id |
I have a result set in MS-SQL within a stored procedure, and lets say
I have a large result set assembled in a parent/child relationship. I need to
Have a look at this page: http://173.203.72.190:12123/Search-Results.aspx?Mode=Browse&Cuisine=-1&Zone=-1 If you click 'Browse' with the 'Any
I have code that manipulates binary files using fstream with the binary flag set

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.