///<summary>Returns definitions that are associated to the defCat, fKey, and defLinkType passed in.</summary> public static List <Def> GetDefsByDefLinkFKey(DefCat defCat, long fKey, DefLinkType defLinkType) { //No need to check RemotingRole; no call to db. List <DefLink> listDefLinks = DefLinks.GetDefLinksByType(defLinkType).FindAll(x => x.FKey == fKey); return(Defs.GetDefs(defCat, listDefLinks.Select(x => x.DefNum).Distinct().ToList())); }