Ramco Ramco

Ramco Ramco

  • 441
  • 3.4k
  • 522.7k

Error Operator && cannot be applied to operands of type int ? & int

Jul 5 2022 6:12 AM

Hi

  When i add && t.studentid equals t2.studentid then i get above error

public List<View_SessionDeliveryCalendarDetails_Student> GetOrderingInput()
        {
            List<View_SessionDeliveryCalendarDetails_Student> Result = (from t in context.View_SessionDeliveryCalendarDetails_Students
                                                                        join t2 in context.View_BookDeliveryDetails
                                                                        on t.BookID equals t2.BookID && t2.StudentID equals t2.studentid
                                                                        where t.CurrentStatus == "Due"
                                                                        orderby t.Name
                                                                        select t).ToList();
            return Result;
        }

Thanks


Answers (7)