0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ThenIncludeメソッドで関連データが指定できない

Posted at

特定の条件で、ThenIncludeメソッドで指定する、コンテキストのプロパティがVisual Studioのインテリセンスに表示されないことがあったので、検証してみました。

結論

ThenInclude(colection => corection.×××)のように、コレクションの関連データを読み込もうとするとインテリセンスに表示されません。インテリセンスのバグだそうです。

対策

インテリセンスに頼らず手動で指定する。

検証

使用するモデル(必要な個所だけ抜粋)
   public class User
    {
        public int UserId { get; set; }
        public string UserName { get; set; }

        public List<Books> UserBooks { get; set; }
    }

    public class Books
    {
        public int UserId { get; set; }
        public int CategoryId { get; set; }
        public string Title { get; set; }

        public List<BookCategory> BookCategories { get; set; }
    }

    public class BookCategory
    {
        public int CategoryId { get; set; }
        public int CategoryName { get; set; }
    }

ThenIncludeでコレクションの関連データを読み込む

コメント 2019-12-03 220121.png
本来はここでBooksクラスの関連データのプロパティである「BookCategories」がインテリセンスに出てきてほしいが、出てこない。
出てこないが、直接プロパティを打ち込めばエラーなく読み込むことができる。
コメント 2019-12-03 220342.png

上記画像のようにプロパティ名を指定してから「userBooks.」まで消して、プロパティ名を打つとなぜか表示される

コメント 2019-12-03 221135.png

なぜかインテリセンスに出てくるが、一回全部消してからもう一回打つと出てこなくなる。

インテリセンスに出てこないからThenInclude使えないわーと思ってたけど、実は使えるんです。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?