public PrefetchPolicyBuilder WithRule(IPropertyType propertyType, PrefetchPolicy prefetch)
        {
            var rule = new PrefetchRule(propertyType, prefetch);

            this.rules.Add(rule);
            return(this);
        }
예제 #2
0
 public PrefetchPolicyBuilder WithRule(IPropertyType propertyType, PrefetchPolicy prefetch)
 {
     var rule = new PrefetchRule(propertyType, prefetch);
     this.rules.Add(rule);
     return this;
 }