Linq query return true or false

后端 未结 5 539
孤独总比滥情好
孤独总比滥情好 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条回答
  •  萌比男神i
    2021-02-05 12:50

    If I understand you correctly you want to get true if one of the results of the query matches all conditions. In that case try something like this:

    var found =
        (from c in db.Emp
        from d in db.EmpDetails
        where c.ID == y.ID && c.FirstName == "A" && c.LastName == "D"
        select c).Any();
    
    this.result = found.ToString();
    

提交回复
热议问题