protected override Expression <Func <ModifierListAssociation, bool> > FindExisting(ModifierListAssociation record) => existing => existing.SyntaxTokenId == record.SyntaxTokenId && existing.ModifierListId == record.ModifierListId;
protected override IEnumerable <object> EnumerateReferences(ModifierListAssociation record) { yield return(record.SyntaxToken); yield return(record.ModifierList); }