コード例 #1
0
 protected override Expression <Func <PropertyListAssociation, bool> > FindExisting(PropertyListAssociation record)
 => existing
 => existing.PropertyId == record.PropertyId &&
 existing.PropertyListId == record.PropertyListId;
コード例 #2
0
        protected override IEnumerable <object> EnumerateReferences(PropertyListAssociation record)
        {
            yield return(record.Property);

            yield return(record.PropertyList);
        }