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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:44:50+00:00 2026-05-27T00:44:50+00:00

We had a custom object extension method that would handle the following. Source is

  • 0

We had a custom object extension method that would handle the following.

  • Source is DataRow target is class.
  • Source is DataTable target is a List<class>
  • Source is class target is class
  • Source is List<class> target is List<class>

I found ValueInjecter and DataTable so I can handle a DataRow and DataTable.
So I am to the step where I am gluing it all together.

Here is what I tried.

public static class ObjectExtensions
{
    public static void OldFill(this object fillMe, object sourceObject)
    {
        Type sourceType = sourceObject.GetType();
        Type fillType = fillMe.GetType();

        switch (sourceType.Name)
        {
            case "DataRow":
                fillMe.InjectFrom<DataRowInjection>(sourceObject);
                break;

            case "DataTable":
                fillMe.InjectFrom<DataTableInjection<fillType>>(sourceObject);
                break;

            default:
                fillMe.InjectFrom(sourceObject);
                break;
        }
    }
}

Not sure how to get the right fillType to make the code work right.
Because this is legacy code I do not want to change the extension signature.

  • 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-27T00:44:50+00:00Added an answer on May 27, 2026 at 12:44 am

    I don’t know the answer, but I can say DataTableInjection<fillType> won’t compile. You’d need to use Reflection to do the binding, something like this:

    case "DataTable":
      var tableInjector = typeof (DataTableInjection<>).MakeGenericType(fillType);
      tableInjector.GetMethod("InjectFrom").MakeGenericMethod(tableInjector)
        .Invoke(fillMe, new[] { sourceObject });
      break;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a custom class that extends List which I am using as a
previously i had custom tableviewcell and was loading from Nib.in that i have specified
Like many other SharePoint users, I've had to create a custom list definition. After
I was implementing a ListView activity with custom drawn views and had the following
I had to implement a custom HttpModule to handle a 404 error in Sharepoint.
I'm want to parse a custom string format that is persisting an object graphs
So let's say I have a custom object in java: public class TestObject {
I've created a custom URL object in JavaScript and discovered that Firefox already has
We have a custom panel class that animates its children via an internal DoubleAnimation
I've had to create a custom membership provider for my current ASP .Net project

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.