-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Implement EF.MultipleParameters method. #36358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 9 commits
3646030
baa2de2
717cc6d
1b73279
2f8aba5
e622c11
c52ddd2
ad85831
172c19e
1f99313
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,15 +16,15 @@ public sealed record RelationalParameterBasedSqlProcessorParameters | |
| /// <summary> | ||
| /// Which parametrized collection translation mode should be used. | ||
| /// </summary> | ||
| public ParameterizedCollectionMode ParameterizedCollectionMode { get; init; } | ||
| public ParameterTranslationMode ParameterizedCollectionMode { get; init; } | ||
|
||
|
|
||
| /// <summary> | ||
| /// Creates a new instance of <see cref="RelationalParameterBasedSqlProcessorParameters" />. | ||
| /// </summary> | ||
| /// <param name="useRelationalNulls">A value indicating if relational nulls should be used.</param> | ||
| /// <param name="parameterizedCollectionMode">Which translation mode should be used.</param> | ||
| [EntityFrameworkInternal] | ||
| public RelationalParameterBasedSqlProcessorParameters(bool useRelationalNulls, ParameterizedCollectionMode parameterizedCollectionMode) | ||
| public RelationalParameterBasedSqlProcessorParameters(bool useRelationalNulls, ParameterTranslationMode parameterizedCollectionMode) | ||
| { | ||
| UseRelationalNulls = useRelationalNulls; | ||
| ParameterizedCollectionMode = parameterizedCollectionMode; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.