Swift CoreData let entity = NSEntityDescription.entityがnilでクラッシュする


大まかな実装の手順の記事紹介

https://www.2nd-walker.com/2020/03/05/swift-basic-how-to-use-coredata/#entitiwo_zuo_chengshi_shu_xingwo_she_dingsuru

こちらがかなり詳細でよかったです。
データ型を生成してすぐにInsertしないでデータを入れてからInsertする方法を試行していた所、はまったので解決方法を記載しておきます。

解決方法:AppDelegateを修正する

https://teratail.com/questions/145548

  // MARK: - Core Data stack
    
    lazy var persistentContainer: NSPersistentContainer = {
        /*
         The persistent container for the application. This implementation
         creates and returns a container, having loaded the store for the
         application to it. This property is optional since there are legitimate
         error conditions that could cause the creation of the store to fail.
         */
        let container = NSPersistentContainer(name: "xcdatamodeld名")...

上記記事のように"xcdatamodeld名"で書いてあげないとダメですね。
これを直したら通りました。