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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:52:07+00:00 2026-05-24T04:52:07+00:00

Is it possbile to make AutoMapper call a method after mapping source and destination?

  • 0

Is it possbile to make AutoMapper call a method after mapping source and destination?

My ViewModel looks like this:

 public class ShowCategoriesViewModel
{
    public int category_id { get; set; }
    public string category_name { get; set; }

    public List<MvcApplication3.Models.Category> SubCategories { get; set; }

    public void Sort()
    {
        SubCategories.Sort(new CompareCategory());
    }

}

And my Controller looks like this:

        public ActionResult Index()
    {
        var category = db.Category.Where(y => y.parrent_id == null).ToList();

        Mapper.CreateMap<Category, ShowCategoriesViewModel>().
            ForMember(dest => dest.SubCategories, opt => opt.MapFrom(origin => origin.Category1));

        List<ShowCategoriesViewModel> scvm = Mapper.Map<List<Category>, List<ShowCategoriesViewModel>>(category);

        foreach (ShowCategoriesViewModel model in scvm)
        {
            model.Sort();
        }

        return View(scvm);
    }

I would like to have AutoMapper call the Sort() method, instead of doing a foreach loop. Is this possible?

  • 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-24T04:52:07+00:00Added an answer on May 24, 2026 at 4:52 am

    I think you can use .AfterMap here

    Mapper.CreateMap<Category, ShowCategoriesViewModel>()
        .ForMember(dest => dest.SubCategories, opt => opt.MapFrom(origin => origin.Category1))
        .AfterMap((c,s) => s.Sort());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is it possible to make something like this? // file.php $string = require('otherfile.php'); echo
It is possible to make something like this? $.ajax({ url: test.php, success: function(json, json1){
there is possible make something like this in php ? <script type=text/javascript> for(i=0; i<5;
is possible make insert in the table with only one column and this column
Is it possible to make readonly source code (eg., .pas & .dfm) writable from
Possible Duplicates: Make a wizard like application in Android Pattern one activity, multiple views.
is it possible to make a circular JFrame without the need to the Class
In my javacript function I call this ajax. It works fine but only when
Possible Duplicate: Make Vim Curly Braces, Square Braces, Parens act like Textmate I'm coming
Is it possbile to make a variable global in C#?

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.