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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:33:06+00:00 2026-06-11T23:33:06+00:00

I have a simple method where I save the given customer information into the

  • 0

I have a simple method where I save the given customer information into the database using entity Framework:

    public Customer AddCustomer(Customer customer)
    {
        using (var context = DataObjectFactory.CreateContext())
        {
            context.AddObject("CustomerEntities", Mapper.Map(customer));

            context.SaveChanges();

            return customer;
        }
    }

Customer type is very simple, it consists of Id, and Name of the customer, so when we want to save a customer I simply pass a customer object to AddCustomer method, at this point the Id is null and the Name field contains the name I want save to the database.

This works fine, the name gets inserted into the database, however what I want to do is to get the saved customer Id back and return to the calling function, is there anyway of achieving this?

EDIT:

This is the Mapper method used:

internal static class Mapper
{
    internal static IList<Customer> Map(IEnumerable<CustomerEntity> entity)
    {
        return entity.Select(Map).ToList();
    }

    internal static Customer Map(CustomerEntity entity)
    {
        return new Customer
        {
            CustomerId = entity.CustomerId,
            Name = entity.Name
        };
    }

    internal static CustomerEntity Map(Customer customer)
    {
        return new CustomerEntity
        {
            CustomerId = customer.CustomerId,
            Name = customer.Name
        };
    }
}

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-06-11T23:33:07+00:00Added an answer on June 11, 2026 at 11:33 pm

    have a little doubt with the Mapping part, as we don’t know what Mapper.Map(customer) does return… But I’m quite sure that it does return a new instance of something… So customer.Id won’t be changed, as you don’t add customer to context, but Mapper.Map(customer)

    EDIT : well, my guess was right (what a genius 😉 ). So that should be

    public int AddCustomer(Customer customer)
    {
        using (var context = DataObjectFactory.CreateContext())
        {
            var customerEntity = Mapper.Map(customer);
            context.AddObject("CustomerEntities", customerEntity);
    
            context.SaveChanges();
    
            return customerEntity.Id;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have a simple method called Invert : public static void Invert(this bool
Say I have this simple method: public IEnumerable<uint> GetNumbers() { uint n = 0;
I have a simple recursive method written in both Java and C# Java public
I'm using Eclipse, and I have a pretty simple project, I'll save you the
I have a simple method (running on Tomcat 6.0.35) that looks like so: @RequestMapping(value
Hi I have this simple method which gets triggered when i click inside a
I have a simple update method in my manager class and I need to
I am simply learing Ajax with jQuery and have a simple page method that
I have made simple encryption/decryption method in php that I'm trying to move to
I have a simple web service method which I'm trying to convert: <WebMethod()> _

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.