Alx09

Untitled

Dec 8th, 2021
1,372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1.   if (String.IsNullOrEmpty(begin) && !String.IsNullOrEmpty(end))
  2.                 clienti = clienti.Where(c => c.AnAparitie <= @Convert.ToInt32(end));
  3.             else if(!String.IsNullOrEmpty(begin) && String.IsNullOrEmpty(end))
  4.                 clienti = clienti.Where(c => c.AnAparitie >= @Convert.ToInt32(begin));
  5.             else
Advertisement
Add Comment
Please, Sign In to add comment