I have a method that receives a category id, followed by two optional string parameters that default to null....I tried using a few similar answers from other questions on SO but sofar none have helped....I am trying to get the linq to EF query to work as...
I have a Query in SQL Server : ...SELECT * FROM MyTable t
WHERE ISNULL(t.Status,'') = ''
...How I can do it in Entity Framework?...EDIT:
Oh Sorry my code was like ...WHERE ISNULL(t.Status,'') = ''