Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "yonatanyas"

<cite>ismcagdas: </cite> Hi,

It's not recommended to use entities for AppService inputs. You can create a Dto for your AppService input and map it to your entity before saving or inserting your entity.

In order to update an entity, you should first get it from your repository.

i have tried also to get the instance and modify it and update and it still not working: for example :

var item = _prePopulationRepository.Get(id);

            item.DerecognisedIndicator = true;

            _prePopulationRepository.Update(item);
Showing 1 to 1 of 1 entries