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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:48:12+00:00 2026-05-29T22:48:12+00:00

I created a C# Razor site with no explicit model definitions, relying on the

  • 0

I created a C# Razor site with no explicit model definitions, relying on the dynamic keyword to represent my model. However, this is now breaking because it says that “object doesn’t contain member X”. It does contain it; intellisense shows this, but whatever is using the model, when dynamic, is breaking. Even adding @model dynamic doesn’t work.

Changing to an explicit model is working, so I’m doing that, but what would cause dynamic support to stop working in process?

EDIT:

My controller simply does this:

public ActionResult List()
{
  return View(new
  {
     Data = repos.GetData() 
  });
}

and the uses it directly:

@{ Title = "X" }

@foreach (var item in Model.Data)
{
   Render
}

The model and data is not null, and there is valid data.

Thanks.

  • 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-29T22:48:13+00:00Added an answer on May 29, 2026 at 10:48 pm

    If you want to utilize dynamic types to be passed, you should use the ViewBag property. Your code could read:

    public ActionResult List()
    {
      ViewBag.Data = repos.GetData();
    
      return View();
    }
    

    Your View:

    @foreach (var item in ViewBag.Data)
    {
       Render
    }
    

    I tried to get your code working but I also throw the same error.

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

Sidebar

Related Questions

I created a display template in Razor specifically for displaying currency, which I now
I have a string created using asp.net MVC3 Razor block like this: @{ var
I've created a web site using Asp.Net and the Razor view engine (which is
I have created one page in MVC 3.0 Razor view. Create.cshtml @model LiveTest.Business.Models.QuestionsModel @*<script
I created an anchor like this: <a id=create /> and it works in IE
I am working on asp.net MVC 3 application. I have created a Razor view
(Using MVC4 VB EF4 MSSQL Razor) I created a Stored Procedure in the MS
I had created a webpage using asp.net mvc3 razor. I have two master pages
I have created a Razor view in my asp.net MVC 3 application. It is
I have a hidden field on a form that is created in Razor using

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.