Hi, I am working with 2 DataTransferObjects for 2 tables, eg. Person (pk: id) and PersonDetails (pk: id, languagecode). When i generate the instances of the dataclasses i want to assign the PersonDetails id the id of PErson, but unfortunately i don'T know the auto generated id at this moment. Persn p = new Person(); PersonDetail pd = new PersonDetails(); pd.id = p.id.whichWillBegeneratedAfterInsert; Of course I could make the id of PErsondEtails also an auto generated entity. I don't know if this
Read More...