クリーンアーキテクチャ(オニオンアーキテクチャ)について勉強しています。
サービス層と手動トランザクションについて教えてください。
① サービス層について
下記の引用先の記事と図ですが、
・Application serviceとDomain serviceの違いがわかりません。
Application service :下記のソースコードを例とするとControllerのチェック処理等をApplication Serviceに分ける?(ユースケース組立の一部?)
Domain service : 下記のソースコードを例とすると、Controllerで使用しようとしていたRepositoryをDomain serviceに分ける(ControllerでServiceを操作する)
のようなことでしょうか?
・Mvcフレームワーク自体にもStartupにserviceの機能があるようです。
(依存性の注入というものが行われているようです。コンストラクタでデータのcontext(MvcContext)を利用できたりする)
これはApplication Serviceに該当するのでしょうか。
② 手動トランザクションについて
下記に記載のコード(C#)ですが、他の言語でも似たようなことかもしれませんが、
ORM(C#のEntity Framwork Core)を使用し、RepositoryでSaveChangesAsyncをすればコミットしてくれます。
複数のデータを同時更新したい時、ORMの機能でできる時もあります。
また、現在context(データ)はRepositoryが持っています。
それでも任意でトランザクションを手動で実施したい場合はどの層で実施すればよいでしょうか?
よろしくお願いします。
(引用) オニオンアーキテクチャとは何か
https://qiita.com/cocoa-maemae/items/e3f2eabbe0877c2af8d0
DepartmentsController
C#
1 public class DepartmentsController : Controller { 2 private readonly DepartmentService _depertmentService; 3 4 // Default constructor 5 public DepartmentsController(DepartmentService departmentService) { 6 this._depertmentService = departmentService; 7 } 8 9 [HttpPost] 10 public async Task<IActionResult> Create(Department department) { 11 // 説明のため記載は一部省略してます。 12 try { 13 if (ModelState.IsValid) { 14 // Id、重複のチェック処理など 15 // ... 16 17 // サービス 18 await this._depertmentService.CreateAsync(department); 19 20 Response.StatusCode = (int)HttpStatusCode.OK; 21 return Json(new { message = "success" }); 22 } 23 } catch (Exception e) { 24 // this._logger.LogError(1, e.Message); 25 } 26 27 Response.StatusCode = (int)HttpStatusCode.BadRequest; 28 return Json(new { message = "エラーメッセージ" }); 29 } 30 }
DepartmentService
C#
1 public class DepartmentService { 2 private readonly IDepartmentRepository _departmentRepository; 3 4 public DepartmentService(IDepartmentRepository departmentRepository) { 5 this._departmentRepository = departmentRepository; 6 } 7 8 public async Task<int> CreateAsync(Department department) { 9 await this._departmentRepository.CreateAsync(department); 10 await this._departmentRepository.SaveAsync(); 11 return 1; 12 } 13 }
DepartmentRepository ※インタフェースの記載は省略します。
C#
1public class DepartmentRepository : IDepartmentRepository { 2 private readonly MvcDbContext _context; 3 4 public DepartmentRepository(MvcContext context) { 5 this._context = context; 6 } 7 8 public async Task<int> CreateAsync(Department department) { 9 return await Task.Run(() => { 10 this._context.Departments.Add(department); 11 return 1; 12 }); 13 } 14 15 public async Task<int> SaveAsync() { 16 await this._context.SaveChangesAsync(); 17 return 1; 18 } 19}
Startup
C#
1services.AddDbContext<MvcDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("MvcConnection"))); 2services.AddTransient<IDepartmentRepository, DepartmentRepository>();
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。