7 writes to ErrorContextInfo
System.Data.Entity (7)
System\Data\Common\EntitySql\CqlLexerHelpers.cs (2)
355id.ErrCtx.ErrorContextInfo = EntityRes.CtxEscapedIdentifier; 438id.ErrCtx.ErrorContextInfo = EntityRes.CtxIdentifier;
System\Data\Common\EntitySql\CqlParserHelpers.cs (1)
196astExpr.ErrCtx.ErrorContextInfo = info;
System\Data\Common\EntitySql\SemanticAnalyzer.cs (4)
827methodExpr.ErrCtx.ErrorContextInfo = Strings.CtxFunction(metadataMember.Name); 843methodExpr.ErrCtx.ErrorContextInfo = Strings.CtxTypeCtor(metadataMember.Name); 848methodExpr.ErrCtx.ErrorContextInfo = Strings.CtxFunction(metadataMember.Name); 2336typeName.ErrCtx.ErrorContextInfo = methodExpr.ErrCtx.ErrorContextInfo;
17 references to ErrorContextInfo
System.Data.Entity (17)
System\Data\Common\EntitySql\CqlParser.cs (11)
2062SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 2069SetErrCtx(AstNode(yyval), AstNodePos(yyval), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 2095SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 2102SetErrCtx(AstNode(yyval), AstNodePos(yyval), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 2217SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 2473SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 2519SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 3049SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 3056SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 3446SetErrCtx(AstNode(yyval), AstNodePos(val_peek(0)), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo); 3453SetErrCtx(AstNode(yyval), AstNodePos(yyval), AstNode(val_peek(0)).ErrCtx.ErrorContextInfo);
System\Data\Common\EntitySql\CqlParserHelpers.cs (2)
156if (null != astNode && (null != astNode.ErrCtx) && (!String.IsNullOrEmpty(astNode.ErrCtx.ErrorContextInfo))) 170syntaxContextInfo = EntityRes.GetString(errCtx.ErrorContextInfo);
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
2336typeName.ErrCtx.ErrorContextInfo = methodExpr.ErrCtx.ErrorContextInfo;
System\Data\Common\EntitySql\SemanticResolver.cs (2)
1277ErrCtx.ErrorContextInfo, 1284containedAggregate.ErrCtx.ErrorContextInfo,
System\Data\EntitySqlException.cs (1)
105return EntitySqlException.Create(errCtx.CommandText, errorMessage, errCtx.InputPosition, errCtx.ErrorContextInfo, errCtx.UseContextInfoAsResourceIdentifier, innerException);