Ejemplo n.º 1
0
 public IAsyncEnumerable <EntityLoadInfo> GetRelatedValues(EntityKey key, Func <IValueReader, EntityKey> keyFactory)
 {
     return(_includeCollectionIterator
            .GetRelatedValues(key, keyFactory)
            .Select(vr => new EntityLoadInfo(vr, _materializer)));
 }
Ejemplo n.º 2
0
 public IAsyncEnumerable <IValueReader> GetRelatedValues(EntityKey key, Func <IValueReader, EntityKey> keyFactory)
 {
     return(_includeCollectionIterator.GetRelatedValues(key, keyFactory));
 }