How do i convert this query expression syntax to method syntax? please help,
var designers = (from d in _dbRead.Designer
join vd in _dbRead.VariationDesigner on d.DesignerId equals vd.DesignerId
join pv in _dbRead.ProductVariation on vd.VariationId equals pv.VariationId
where (pv.IsActive ?? false) && (d.SortName ?? "") != ""
orderby d.SortName
select d).Distinct();
i did the conversion using the cheat sheet here
Which i found in another of the same kind of post on stackoverflow.
Here is the soultion: