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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:57:44+00:00 2026-05-20T07:57:44+00:00

Are there any quick way to map some IDataReader to object without third party

  • 0

Are there any quick way to map some IDataReader to object without third party libraries such as AutoMapper or ValueInjecter?

  • 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-20T07:57:44+00:00Added an answer on May 20, 2026 at 7:57 am

    I’m not sure what you mean by quick, but you can put something together using reflection. There’s a lot of assumptions you’ll have to make, such as all your object’s values are set via properties. And, your DataReader columns MUST match your object property name. But you could do something like this:

    NOTE: The SetProperty function is from an article on DevX. (It was in VB.NET, and I converted it to C# — if there are mistakes, I probably missed something.)

    IList<MyObject> myObjList = new List<MyObject>();
    
    while (reader.Read()){
      int fieldCount = reader.FieldCount;
      MyObject myObj = new MyObject();
      for(int i=0;i<fieldCount;i++){
        SetProperty(myObj, reader.GetName(i), reader.GetOrdinal(i));
      }
      myObjList.Add(myObj);
    }
    
    bool SetProperty(object obj, String propertyName, object val) {
        try {
            //get a reference to the PropertyInfo, exit if no property with that 
            //name
            System.Reflection.PropertyInfo pi = obj.GetType().GetProperty(propertyName);
            if (pi == null) then return false;
            //convert the value to the expected type
            val = Convert.ChangeType(val, pi.PropertyType);
            //attempt the assignment
            pi.SetValue(obj, val, null);
            return true;
        }
        catch {
            return false;
        }
    }
    

    No guarantees that this code will run (I’m just typing it and not compiling/testing it), but it at least may be a start.

    I’ve done things like this in the past and have gotten fancy with applying attributes to my properties stating what data reader column to map to the property. Too much to include here, but this is just a starter and hopefully is what you’re looking for.

    Hope this helps!

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

Sidebar

Related Questions

Is there any way to check whether a file is locked without using a
Is there any way to have a map's placemark call a javascript method on
Just wondering, is there any quick way to count all the NULL values (from
Is there any quick way to, given an executable file, create a Windows service
Quick question... Is there any way to change the default behavior of a scrollbar
Quick question, I was curious if there is any difference between a database table
Is there any way to capture the MouseDown even from the .NET 2.0 TextBox
Is there any known way of listing the WMI classes and their properties available
Is there any way to apply an attribute to a model file in ASP.NET
Is there a quick way to add a blank value to a drop down

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.