Linq query return true or false

后端 未结 5 439
孤独总比滥情好
孤独总比滥情好 2021-02-05 11:54

I have a query where it should return TRUE or FALSE.

var query = from c in db.Emp
            from d in db.EmpDetails 
            where c.ID == d.ID &&         


        
5条回答
  •  野的像风
    2021-02-05 12:28

    try this,

     var query = (from c in db.Emp
            from d in db.EmpDetails 
            where c.ID == d.ID && c.FirstName == "A" && c.LastName == "D"
             select c 
             ).Any(); 
    
      this.result = query; //no need to convert to boolean its already bool value
    

提交回复
热议问题