hmm1995

Results 2 comments of hmm1995

I don't know if this could be possible, but if it is, a nice way could be this: ``` UserRepository.Update([trans]) .Set( x => x.attribute_1 = value1 & x.attribute_2 = value2)...

Perfect! If it helps, I have seen that in some repositories the method has the following structure: `repo.Update( dynamicObject, idValue, [trans]);` Seeing this a better way could be: ``` repo.Update(dynamicObject,...