简体   繁体   中英

Joining two tables with one to many relatipnship in entity framework code first

i have

  public class Menu
    {  
       public int ID { get; set;} 
       public List<Task> Tasks { get; set; }
    }



 public class Task
    {
        public int ID { get; set; }
        public byte[] Image { get; set; }
        public string Name { get; set; }  
    }

i would like to know all tasks which has a certain List ID using LINQ queries

Try

var result = Menus.Where(menu => menu.ID == id)
                  .Select(menu => menu.Tasks)
                  .FirstOrDefault();

Also you may want to peruse http://code.msdn.microsoft.com/101-LINQ-Samples-3fb9811b as this would answer most of your queries like the above.

You can use Enumerable.Where

var list = Tasks.Where(l=>l.ID ==x);

or

   var list = from t in Tasks
              where t.ID == x
              select t;

x will be the id you need to compare

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM