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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:27:57+00:00 2026-06-09T18:27:57+00:00

I have a REST-style web application that uses EF code first. I’m using AutoMapper

  • 0

I have a REST-style web application that uses EF code first. I’m using AutoMapper to map my classes to DTO classes for passing across the wire, and (hopefully) back.

When I map from my POCO classes to DTOs, I’m actually starting with an EF proxy object, since the objects I’m dealing with were the result of executing some sort of query against my DataContext. This seems to work fine, however.

When I get back a DTO class as part of a POST request, I can use AutoMapper to map it onto my POCO class, and this works fine too.

However because AutoMapper is just new()-ing the POCO objects rather than using the Create method on the EntitySet, I now have a POCO class rather than the corresponding EF proxy class. This makes it harder for me to add the data to my database etc.

How can I persuade AutoMapper to use EntitySet.Create? Or is there another way to achieve the same result?

  • 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-09T18:27:58+00:00Added an answer on June 9, 2026 at 6:27 pm

    Map.CreateMap creates an IMappingExpression object which has a method ConstructUsing that accepts a function that can be used as factory method for new objects. The mapped properties are used to set values. (This can be overriden by ConvertUsing, by the way).

    For details, see Automapper – how to map to constructor parameters instead of property setters, AutoMapper using the wrong constructor, or How to use Automapper to construct object without default constructor.

    In your case this could be something like:

    Mapper.CreateMap<TDto, TPoco>()
        .ConstructUsing((Func<TDto, TPoco>) (c => context.CreateObject<TPoco>()))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.NET MVC web application that makes REST style web service calls
I have an application with a REST style interface that takes XML documents via
I have a REST API using Django Tastypie. Given the following code The models
We have a web application written in ASP.NET for .NET 3.5, using standard web
I have a REST web service class which i call HttpRequest using curl.I wrote
I have a REST service that returns a JSON like this: [{@id:123,name:Name}] and I'm
I have a REST endpoint accepting a POST request to mark a code as
I have a REST api with Gzip compression enabled, it's developed using the ASP.net
I have some REST web services implemented in WCF. I wish to make these
I have a REST server and a client application running on a mobile device.

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.