I'm using LINQ to SQL and LINQ dynamic where and order by.
I want to convert the code below(ASP) to C#.net.
function getTestimonialList(statusCd)
sWhere = ""
if statusCd <> "" then
sWhere = " where status='" & statusCd & "'"
end if
sqlStr="select * from testimonial" & sWhere & " order by case when status = 'P' then 1 when status = 'A' then 2 else 3 end, dateadded desc"
set rs=getResult(sqlStr)
set getTestimonialList=rs
end function
Here is my query :
var TestimonialList = from p in MainModelDB.Testimonials
where String.IsNullOrEmpty(statusCd)?"1=1":p.status== statusCd
orderby p.status == 'P' ? 1 : (p.status == 'A' ? 2 : 3)
orderby p.DateAdded descending
select p;
the above example doesn't work! , any idea if its possible? any other way to do it?
Thanks