-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
layout: post | ||
title: 2025-01-01 ポリモーフィック関連 | ||
--- | ||
|
||
# ポリモーフィック関連 | ||
|
||
ポリモーフィック関連になっているものは同じ型として扱えなければいけない。 | ||
|
||
なのでコード上でポリモーフィック関連を表現する場合はインターフェイスを明示したメソッドを作り、それを各クラスでオーバーライドするのが良さそう。 | ||
|
||
そもそもポリモーフィック関連自体アンチパターンと言われている。 | ||
テーブル上は関連する対象の型を保存するtype型とそのIDを保持しており、typeによってどのテーブルと紐づいているかが動的に決まるため外部キー制約が効かない。 | ||
そのため誤ったデータが保存されても気づけない。 | ||
RailsのようにFWでポリモーフィック関連のしくみがサポートされていなければ使わない方が良さそう |