6 references to FirstScopeIndex
System.Data.Entity (6)
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
4249
Debug.Assert(sr.CurrentScopeIndex < sr.CurrentScopeRegion.
FirstScopeIndex
, "Current scope region is expected to have no scopes.");
System\Data\Common\EntitySql\SemanticResolver.cs (5)
1620
Debug.Assert(
FirstScopeIndex
<= _scopeManager.CurrentScopeIndex, "FirstScopeIndex <= CurrentScopeIndex");
1622
for (int i =
FirstScopeIndex
; i <= _scopeManager.CurrentScopeIndex; ++i)
1636
Debug.Assert(
FirstScopeIndex
<= _scopeManager.CurrentScopeIndex, "FirstScopeIndex <= CurrentScopeIndex");
1638
for (int i =
FirstScopeIndex
; i <= _scopeManager.CurrentScopeIndex; ++i)
1664
_scopeManager.RollbackToScope(
FirstScopeIndex
- 1);