Answers for "Include multiple siblings at the Level"

C#
0

Include multiple siblings at the Level

_dbSet
    .Include(tiers => tiers.Contacts).ThenInclude(contact => contact.Titre)
    .Include(tiers => tiers.Contacts).ThenInclude(contact => contact.TypeContact)
    .Include(tiers => tiers.Contacts).ThenInclude(contact => contact.Langue);
    // etc.
Posted by: Guest on October-15-2021

C# Answers by Framework

Browse Popular Code Answers by Language