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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T17:02:23+00:00 2026-06-10T17:02:23+00:00

The best solution I could find (anywhere) to get results from an SQL Query

  • 0

The best solution I could find (anywhere) to get results from an SQL Query into a local variable was to use a NULL List<dynamic> or IEnumerable<dynamic> variable declaration.

Creating the variable by doing something like:

@{
    IEnumerable<dynamic> myVariable = null;
}

The variable can then get a value from a database query like:

@{
    try
    {
        Database db = Database.Open("name"); // name of connectionString configured in web.config
        string myQuery = "EXEC dbo.Get_Results @Param1=@0, @Param2=@1";
        myVariable = db.Query(myQuery, @Param1, @Param2);
        db.Close();
        db.Dispose();
    }
    catch (Exception ex)
    {
        // Do something
    }

Which allows me to do something like the following:

@if(myVariable != null)
{
    foreach (var row in myVariable)
    {
        // Do something
    }
}

This is working perfectly, but what I am still curious is how to do the same using List<dynamic>, as an alternative to using IEnumerable<dynamic> the way I am using it.

What is the List<dynamic> equivalent solution that I am using for IEnumerable<dynamic>?

I know my question itself is very simple, but it took me a long time to get past trying to solve can’t implicitly convert errors when I tried to create a Class that could receive the results from db.Query(commandText) into a pre-declared variable. So I thought I should provide more detail in case this helps someone else trying to figure out the same or similar. I found my solution on the IEnumerable<dynamic> in unrelated topic which opened my eyes to much simpler solution to problem I was trying to solve.

  • 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-06-10T17:02:25+00:00Added an answer on June 10, 2026 at 5:02 pm

    Enumerable.Empty<string>() is not null. It is an empty sequence of strings. Note, for example, that the following code prints “false”:

    var sequence = Enumerable.Empty<string>();
    Console.WriteLine(sequence == null);
    

    You probably want to create a new (empty) list:

    List<dynamic> x = new List<dynamic>();
    

    or, if you really need the list variable to hold a null reference:

    List<dynamic> x = null;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to find the best components I could use to build something similar
best solution for use access in project for database with security i need to
what is the best solution to import large amounts of records into an MySQL
I was wondering if someone could explain the best solution for the smallest memory
What is the best solution for inserting boolean values on database if you want
What's the best solution for authoring HTML5 in Emacs? Is there a mode that
what is the best solution in terms of performance and readability/good coding style to
What is the best solution to programmatically take a snapshot of a webpage? The
What is the best solution if I want to make a OnTouch event repeat
What is the best solution for many-to-many joins in Entity Framework. It looks like

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.