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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:52:08+00:00 2026-05-30T13:52:08+00:00

I am using MVC-Viewmodel and EF model first for my projekt These are my

  • 0

I am using MVC-Viewmodel and EF model first for my projekt

These are my Viewmodels i’m using for my index view:

public class IndexViewModel
{
    public List<QuestionViewModel> Questionlist { get; set; }
}

&

   public class QuestionViewModel
    {
       public string QuestionText { get; set; }
       public List<string> CoreValues { get; set; }
       public List<string> SubjectTypes { get; set; }
       public int QID { get; set; }

   }
}

This is my Controller action:

public ActionResult Index()
    {
       List<Question> ListQuestions = Arep.getallquestion();
       var model = new IndexViewModel();
       model.Questionlist = new List<QuestionViewModel>();
       foreach (var item in ListQuestions)
       {
           var QuestionViewModel = new QuestionViewModel();
           model.Questionlist.Add(QuestionViewModel);
           QuestionViewModel.QuestionText = item.QuestionText;
           QuestionViewModel.QID = item.QID;
           QuestionViewModel.CoreValues = new List<string>();
           foreach (var Corevalue in item.CoreValue)
           {
               QuestionViewModel.CoreValues.Add(Corevalue.Cname);   
           }
           QuestionViewModel.SubjectTypes = new List<string>();
           foreach (var SubjectType in item.SubjectType)
           {
               QuestionViewModel.SubjectTypes.Add(SubjectType.Sname);
           }
       }

        return View(model);
    }

What my view UI does is displays lists with Questions.QuestionText that are related to a CoreValue.Cname and SubjectType.Sname. Question can have many CoreValues and SubjectType.

I would like to know how this code would look with use of Automapper, I would appreciate it alot!

Thanks in Advance!

Best regards!

  • 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-30T13:52:09+00:00Added an answer on May 30, 2026 at 1:52 pm

    Untested, but :

    First, You have the CreateMap part (usually somehwere in global.asax.cs)

    Mapper.CreateMap<Question, QuestionViewModel>()
    .ForMember(m => m.CoreValues, opt => opt.MapFrom(s => s.CoreValue.Select(x => x.Cname)))
    .ForMember(m => m.SubjectTypes, opt => opt.MapFrom(s => s.SubjectType.Select(x => x.Sname)))
    

    Then in your controller,

    var model = new IndexViewModel();
    model.Questionlist = Mapper.Map(Arep.getallquestions(), new List<QuestionViewModel>());
    return View(model);
    

    By the way, the code of your controller (without automapper) could be much more concise with a simple linq query !

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

Sidebar

Related Questions

I am using EF model first and using viewmodels in MVC, I have problems
I am using MVC-Viewmodel EF Model First, I am trying to make 2 forms
Im using MVC-Viewmodel, EF Model first on my project. I have a foreach loop
I am using MVC-Viewmodel, EF model first on my project. I have 3 DropDonLista
I'm using ASP.NET MVC 2 and here's the issue. My View Model looks something
I am using ASP.NET MVC 2, and am using a view-model per view approach.
We had a View Model that looked like this: public class myViewModel { public
I'm using the module-level validator: 'PropertiesMustMatch' on my view-model, like so: [PropertiesMustMatch(Password, PasswordConfirm)] public
Where should validation reside when using ViewModels with MVC (MVVM), on the Model or
I am using asp.net mvc 2.0(default binding model) and I have this problem. I

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.