@@ -24,7 +24,7 @@ namespace Microsoft.EntityFrameworkCore.Query.SqlExpressions
24
24
public class SqlFunctionExpression : SqlExpression
25
25
{
26
26
/// <summary>
27
- /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class.
27
+ /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class which represents a built-in niladic function .
28
28
/// </summary>
29
29
/// <param name="functionName"> The name of the function. </param>
30
30
/// <param name="nullable"> A bool value indicating whether this function can return null. </param>
@@ -40,7 +40,7 @@ public SqlFunctionExpression(
40
40
}
41
41
42
42
/// <summary>
43
- /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class.
43
+ /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class which represents a niladic function .
44
44
/// </summary>
45
45
/// <param name="schema"> The schema in which the function is defined. </param>
46
46
/// <param name="functionName"> The name of the function. </param>
@@ -58,7 +58,7 @@ public SqlFunctionExpression(
58
58
}
59
59
60
60
/// <summary>
61
- /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class.
61
+ /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class which represents a niladic function which is invoked on an instance .
62
62
/// </summary>
63
63
/// <param name="instance"> An expression on which the function is defined. </param>
64
64
/// <param name="functionName"> The name of the function. </param>
@@ -91,7 +91,7 @@ private SqlFunctionExpression(
91
91
}
92
92
93
93
/// <summary>
94
- /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class.
94
+ /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class which represents a built-in function .
95
95
/// </summary>
96
96
/// <param name="functionName"> The name of the function. </param>
97
97
/// <param name="arguments"> The arguments of the function. </param>
@@ -111,7 +111,7 @@ public SqlFunctionExpression(
111
111
}
112
112
113
113
/// <summary>
114
- /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class.
114
+ /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class which represents a function .
115
115
/// </summary>
116
116
/// <param name="schema"> The schema in which the function is defined. </param>
117
117
/// <param name="functionName"> The name of the function. </param>
@@ -133,7 +133,7 @@ public SqlFunctionExpression(
133
133
}
134
134
135
135
/// <summary>
136
- /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class.
136
+ /// Creates a new instance of the <see cref="SqlFunctionExpression" /> class which represents a function which is invoked on an instance .
137
137
/// </summary>
138
138
/// <param name="instance"> An expression on which the function is applied. </param>
139
139
/// <param name="functionName"> The name of the function. </param>
0 commit comments