We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3796aa commit aeb462cCopy full SHA for aeb462c
Orm/Xtensive.Orm/Orm/Providers/CompilationService.cs
@@ -24,7 +24,8 @@ public CompilerConfiguration CreateConfiguration(Session session) =>
24
new() {
25
StorageNode = session.StorageNode,
26
Tags = session.Tags,
27
- PreferTypeIdAsParameter = session.Domain.Configuration.PreferTypeIdsAsQueryParameters
+ // prefer constants during upgrade process
28
+ PreferTypeIdAsParameter = !session.Name.Equals(WellKnown.Sessions.System) && session.Domain.Configuration.PreferTypeIdsAsQueryParameters
29
};
30
31
public ExecutableProvider Compile(CompilableProvider provider, CompilerConfiguration configuration)
0 commit comments