You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Creates a new <see cref="SqlExpression" /> which represents a constant in a SQL tree.
419
419
/// </summary>
420
420
/// <param name="value">A value.</param>
421
-
/// <param name="originallyParameter"><see langword="true" /> if the expression was originally a parameter; otherwise, <see langword="false" />.</param>
422
421
/// <param name="typeMapping">The <see cref="RelationalTypeMapping" /> associated with the expression.</param>
423
422
/// <returns>An expression representing a constant in a SQL tree.</returns>
/// Creates a new <see cref="SqlExpression" /> which represents a constant in a SQL tree.
428
427
/// </summary>
429
428
/// <param name="value">A value.</param>
430
429
/// <param name="type">The type for the constant. Useful when value is null.</param>
431
-
/// <param name="originallyParameter"><see langword="true" /> if the expression was originally a parameter; otherwise, <see langword="false" />.</param>
432
430
/// <param name="typeMapping">The <see cref="RelationalTypeMapping" /> associated with the expression.</param>
433
431
/// <returns>An expression representing a constant in a SQL tree.</returns>
Copy file name to clipboardExpand all lines: src/EFCore.Relational/Query/SqlExpressions/SqlConstantExpression.cs
+33-13
Original file line number
Diff line number
Diff line change
@@ -23,35 +23,55 @@ public class SqlConstantExpression : SqlExpression
23
23
/// </summary>
24
24
/// <param name="value">An <see cref="Object" /> to set the <see cref="Value" /> property equal to.</param>
25
25
/// <param name="type">The <see cref="System.Type" /> of the expression.</param>
26
-
/// <param name="originallyParameter"><see langword="true" /> if the expression was originally a parameter; otherwise, <see langword="false" />.</param>
27
26
/// <param name="typeMapping">The <see cref="RelationalTypeMapping" /> associated with the expression.</param>
/// Creates a new instance of the <see cref="SqlConstantExpression" /> class.
37
58
/// </summary>
38
59
/// <param name="value">An <see cref="Object" /> to set the <see cref="Value" /> property equal to.</param>
39
-
/// <param name="originallyParameter"><see langword="true" /> if the expression was originally a parameter; otherwise, <see langword="false" />.</param>
60
+
/// <param name="isSensitive"><see langword="true" /> if the expression contains sensitive values; otherwise, <see langword="false" />.</param>
40
61
/// <param name="typeMapping">The <see cref="RelationalTypeMapping" /> associated with the expression.</param>
/// <param name="originallyParameter"><see langword="true" /> if the expression was originally a parameter; otherwise, <see langword="false" />.</param>
51
71
/// <param name="typeMapping">The <see cref="RelationalTypeMapping" /> associated with the expression.</param>
52
72
[Obsolete("Call the constructor accepting a value (and possibly a Type) instead")]
0 commit comments