Open2

ドメイン駆動設計入門

uniker9uniker9

Chapter 10 データの整合性を保つ

トランザクションスコープ

C#

using(var transaction = new TransactionScope()){
}

AOP

Java

@Transactional(isolation = Isolation.SERIALIZABLE)
public void Register(UserRegisterCommand command){
}