SwiftUI/Swift メモ
@FetchRequest について
@FetchRequestを使ってプロパティを宣言すると、プロパティに検索結果が格納されるとともに、データの変更に応じて検索結果が常に最新に保たれる。
CoreDataの読み出しとして使用される
// [基本宣言]@FetchRequest(entity: Student.entity(),sortDescriptors: [NSSortDescriptor(keyPath: \Student.sid, ascending: true)