Skip to content

Commit

Permalink
Add custom sql generator if AddWindowFunctionsSupport is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelGerr committed Oct 21, 2023
1 parent 38cf22d commit f7d03fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Copyright>(c) $([System.DateTime]::Now.Year), Pawel Gerr. All rights reserved.</Copyright>
<VersionPrefix>7.3.0</VersionPrefix>
<VersionPrefix>7.3.1</VersionPrefix>
<Authors>Pawel Gerr</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://dev.azure.com/pawelgerr/Thinktecture.EntityFrameworkCore</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public bool AddCustomRelationalParameterBasedSqlProcessorFactory
/// </summary>
public bool AddCustomQuerySqlGeneratorFactory
{
get => _addCustomQuerySqlGeneratorFactory || AddBulkOperationSupport || AddTenantDatabaseSupport || AddTableHintSupport;
get => _addCustomQuerySqlGeneratorFactory || AddBulkOperationSupport || AddTenantDatabaseSupport || AddWindowFunctionsSupport || AddTableHintSupport;
set => _addCustomQuerySqlGeneratorFactory = value;
}

Expand Down

0 comments on commit f7d03fa

Please sign in to comment.