Giter Site home page Giter Site logo

Comments (5)

TylerCarlson1 avatar TylerCarlson1 commented on July 4, 2024

It is mostly used for Persist in AM.Collections.EF and AM.Collections.LinqToSQL. What it does is take an object and convert it into an expression that can be used to find its matched object in the database.

So if you need to insert or update you need to know what it is matching on Id or multiple Ids. If you have code

Mapper.Initialize(cfg => 
{
  cfg.AddProfile<CollectionProfile>();
  cfg.CreateMap<Entity,Dto>().EqualityComparison((e, d) => e.Id == d.Id);
}

you can make a map like this

var dto = new Dto {Id = 5};
var findMatchExpression = Mapper.Map<Dto, Expression<Func<Entity,bool>>>(dto); // Returns e => e.Id == 5;
var match = db.Entities.FirstOrDefault(findMatchExpression); // Match will be null or Dto that has an Id of 5

From there you can use the match to insert or update the Entity object. Instead of having to do

var dto = new Dto {Id = 5};
var match = db.Entities.FirstOrDefault(e => e.Id == dto.Id);

Or you can just use

var dto = new Dto {Id = 5};
db.Entities.Persist().InsertOrUpdate<Dto>(dto); // Insert or Update
db.Entities.Persist().Remove<Dto>(dto); // Delete
// call db.SubmitChanges() to commit

If you aren't using this for ORM's to map back to the database, you don't really get any use out of this.
When I made this I made it to be compatible with updating EF/LinqToSQL with as little code as possible.

from automapper.collection.

TylerCarlson1 avatar TylerCarlson1 commented on July 4, 2024

Oh and if you are using it to update EF entities you can add

EquivilentExpressions.GenerateEquality.Add(new GenerateEntityFrameworkPrimaryKeyEquivilentExpressions<MyDBContext>());

then you don't even need EqualityComparison and it's all automatically figured out for you.

from automapper.collection.

rizi avatar rizi commented on July 4, 2024

Thx for the clarification, I was confused an thought we need the ObjectToEquivalencyExpressionByEquivalencyExistingMapper to make the other mapper (EquivlentExpressionAddRemoveCollectionMapper) work. Now that I know who it works I remember that I did something very similar (https://groups.google.com/d/msg/automapper-users/BwIvt2YsvFo/dE7-HI_kBBEJ) thx in advance and keep the great work!

from automapper.collection.

TylerCarlson1 avatar TylerCarlson1 commented on July 4, 2024

Not sure you know but AutoMapper has the functionality to map expressions now. https://github.com/AutoMapper/AutoMapper/wiki/Expression-Translation-(UseAsDataSource)

And UseAsDataSource is like Persist where it does all those mappings behind the scenes.

from automapper.collection.

rizi avatar rizi commented on July 4, 2024

I know that AutoMapper supports Expression mapping because I was the first one who make this work and later on Jimmy added it to AutoMapper and also improved it.
Br

from automapper.collection.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.