I have used a variable called as "Filter"
filter will be having inner join with other table. for example
Filter = "inner join tb1 on tbl1 = vCatalogItemsDetails"
My main query is
var result = context.vCatalogItemsDetails
.Where(whereClause) // whereClause will have all where conditions
.OrderBy("itemID descending select context.vCatalogItemsDetails")
.Skip((pageN - 1) * 10).Take(10);
how can i use the variable "Filter"
in the above query so that i can get inner join ?