Search Results for

    Show / Hide Table of Contents

    Enum StringLiteralParsingType

    Defines the types of string literal parsing that can be performed.

    Namespace: System.Linq.Dynamic.Core.Config
    Assembly: System.Linq.Dynamic.Core.dll
    Syntax
    public enum StringLiteralParsingType : byte

    Fields

    Name Description
    Default

    Represents the default string literal parsing type. Double quotes should be escaped using the default escape character (a ). To check if a Value equals a double quote, use this c# code:

    var expression = "Value == \"\\\"\"";
    EscapeDoubleQuoteByTwoDoubleQuotes

    Represents a string literal parsing type where a double quote should be escaped by an extra double quote ("). To check if a Value equals a double quote, use this c# code:

    var expression = "Value == \"\"\"\"";
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX