Giter VIP home page Giter VIP logo

Comments (3)

leonardoporro avatar leonardoporro commented on May 25, 2024

Hi @stefan-stanca,
By definition, I load n-levels of Owned properties and 1 level of Associated.
I did this to define the boundaries of the root or "aggregate" object, If I load nested associations I may end up loading a big tree, or even the entire DB.

I'm working on a new version that will expose the Set as IQueryable, so you can add your own includes if needed.

And I'm open to suggestions!

from detached-mapper.

stefan-stanca avatar stefan-stanca commented on May 25, 2024
  • I do not see the point in such a restriction. As a programmer, I get to decide in what manner to load objects with DetachedContext. If I dont want to load entire graphs of objects I can use use the Include/ThenInclude api on regular IQueryable and that really defeats the purpose of Detached,
  • Setting it up with IQueryable would really be usefull as sometimes you may need to load entity graph for more than one object.
  • Setting up my own includes would kind of defeat the purpose of this plugin, I can use Include for that.

from detached-mapper.

leonardoporro avatar leonardoporro commented on May 25, 2024

This is my understanding... but maybe I'm wrong...

Let's say I have an "Invoice" entity. The Invoice has [Owned]Rows, and an [Associated]Sell Point.
Sell point also has [Associated]Employees, and Employees have [Owned]Roles and Roles have... any other thing...
If I load associations recursively, I will end loading everything.
There are "main", "root", "strong" entities, called Aggregates in UML, like Invoice and Sell Point. And there are other "weak" entities like Row that have no meaning without the root.
A relation between a Strong and a Weak entity is a Composition (Owned). A relation between two Strong entities is an Association.
The idea behind the library is to update one Strong entity with its relations, but not two strong entities at the same time.
The Load method is used to get the persisted version (database) being used to match the detached version (deserialized). And it is exposed just as a tool to do that.

If you want to join two Strong entities, or project the results to some DTO, you should probably use a normal EF query, and there is no point in using the library.

I'm working now on adding the ability to persist not only entities but any DTO. It will make it more useful.
Will be available next week.

from detached-mapper.

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.