How to get distinct values using Linq on the basis of three columns? – Asp.net
var result = db.SETUP_MASTER_LOGIN .Where(x => x.DELETED == false) .Select(s => new MasterLoginResp { resource_name = s.RESOURCE_NAME, user_name = x.USER_NAME, created_by = x.CREATED_BY }) .ToList() How to get distinct values from selected three columns? I have tried all the given…