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

  • Home
  • SEARCH
  • 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 3210714
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T14:36:30+00:00 2026-05-17T14:36:30+00:00

I’m trying to develop a method to dynamically dispatch a method from my C#

  • 0

I’m trying to develop a method to dynamically dispatch a method from my C# .NET application to a database stored procedure. I already have a method to call the stored procedure which accepts the procedure name and a Hashtable of parameters. I want to be able to call that method from any other method in my application, so I’ve built the following (where ParameterMap is a static Hashtable of stored procedure parameter names:

    public Foo DoSomething(int x, int y)
    {
        var mb = MethodBase.GetCurrentMethod();
        var parameters = new Hashtable();
        foreach (var pi in mb.GetParameters())
        {
            var storedProcMethodName = (ArrayList)ParameterMap[mb.Name];
            var storedProcParameterName = storedProcMethodName[pi.Position];
            parameters.Add(storedProcParameterName, ???);
        }

        return (Foo)
            CallDatabaseMemberFunction("GET", parameters, typeof(Foo));
    }

I want to replace ??? with the parameter values in x and y, accessing them by position, thereby mapping stored procedure parameter names to this method’s parameter values. Any other approach to this problem would be welcome as well.

  • 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-17T14:36:30+00:00Added an answer on May 17, 2026 at 2:36 pm

    You cannot retrieve the parameter values in this way, at least not in .NET.

    You will have to write the code out explicitly (I’ve removed the assignment to storedProcMethodName because you’re not using it anywhere):

    public Foo DoSomething(int x, int y)
    {
        var mb = MethodBase.GetCurrentMethod();
        var parameters = new Hashtable();
    
        parameters.Add("x", x);
        parameters.Add("y", y);
    
        return (Foo)
            CallDatabaseMemberFunction("GET", parameters, typeof(Foo));
    }
    

    If you need this often, you should consider writing a tool that auto-generates this code. All the SQL layers I know of (IQToolkit, SubSonic, LINQ-to-SQL) do so.

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

Sidebar

Related Questions

I have a bunch of posts stored in text files formatted in yaml/textile (from
I am trying to loop through a bunch of documents I have to put
I have some data like this: 1 2 3 4 5 9 2 6
I'm making a simple page using Google Maps API 3. My first. One marker

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.