Home
last modified time | relevance | path

Searched refs:_spanIndex (Results 1 – 3 of 3) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/Internal/Materialization/
H A DColumnMapKeyBuilder.cs36 private readonly SpanIndex _spanIndex; field in System.Data.Common.Internal.Materialization.ColumnMapKeyBuilder
44 _spanIndex = spanIndex; in ColumnMapKeyBuilder()
98 if (_spanIndex != null) in Append()
101 … Dictionary<int, AssociationEndMember> spanMap = _spanIndex.GetSpanMap((RowType)type); in Append()
H A DTranslator.cs134 private readonly SpanIndex _spanIndex; field in System.Data.Common.Internal.Materialization.Translator
184 _spanIndex = spanIndex; in Translator()
501 if (null != _spanIndex && _spanIndex.HasSpanMap(rowType)) in ResolveSpanType()
1561 if (null != _spanIndex && _spanIndex.HasSpanMap(spanRowType)) in Visit()
1710 if (null != _spanIndex) in HandleRegularRecord()
1712 type = _spanIndex.GetSpannedRowType(spanRowType) ?? type; in HandleRegularRecord()
1726 Dictionary<int, AssociationEndMember> spanMap = _spanIndex.GetSpanMap(spanRowType); in HandleSpandexRecord()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Objects/Internal/
H A DObjectSpanRewriter.cs37 private SpanIndex _spanIndex; field in System.Data.Objects.Internal.ObjectSpanRewriter
117 internal SpanIndex SpanIndex { get { return _spanIndex; } }
197 if (null == _spanIndex) in AddSpannedRowType()
199 _spanIndex = new SpanIndex(); in AddSpannedRowType()
202 _spanIndex.AddSpannedRowType(spannedType, originalType); in AddSpannedRowType()
207 if (null == _spanIndex) in AddSpanMap()
209 _spanIndex = new SpanIndex(); in AddSpanMap()
212 _spanIndex.AddSpanMap(rowType, columnMap); in AddSpanMap()