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

Are there any elegant quick way to map object to a dictionary and vice
Is there any quick way to open currently edited / selected file without local
is there any way of quick jump to the last modified line? eclipse has
Is there any way to check whether a file is locked without using a
Is there any quick way I can get the number of strings within a
Is there any quick and easy way to use a sprite to create a
Quick one; Netbeans 7.0 for PHP development: Is there any way to inform NetBeans
Is there any way to have a map's placemark call a javascript method on
Quick one: Is there any way to enforce types for variadic functions in PHP?
Is there any quick way converting <?xml version=1.0?><response><id>0123456</id><userid>0123</userid> to <?xml version=1.0?> <response> <id> 0123456

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.