File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public interface IODataQuery<T> : IODataLinqMethods<T>
33
33
/// <summary>
34
34
/// Returns the OData query string for this query.
35
35
/// </summary>
36
- /// <param name="includeParamters ">If <c>true</c>, include the HTTP parameters in the call.</param>
36
+ /// <param name="includeParameters ">If <c>true</c>, include the HTTP parameters in the call.</param>
37
37
/// <returns>The OData query string representing this query.</returns>
38
38
/// <exception cref="NotSupportedException">If the query cannot be represented as an OData query.</exception>
39
39
string ToODataString ( bool includeParameters = true ) ;
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ public RemoteDatasetException() : base()
19
19
}
20
20
21
21
/// <inheritdoc />
22
- public RemoteDatasetException ( string ? message ) : base ( message )
22
+ public RemoteDatasetException ( string message ) : base ( message )
23
23
{
24
24
}
25
25
26
26
/// <inheritdoc />
27
- public RemoteDatasetException ( string ? message , Exception ? innerException ) : base ( message , innerException )
27
+ public RemoteDatasetException ( string message , Exception innerException ) : base ( message , innerException )
28
28
{
29
29
}
30
30
You can’t perform that action at this time.
0 commit comments