Skip to content

Commit

Permalink
Merge pull request #33 from trenoncourt/develop
Browse files Browse the repository at this point in the history
update to 1.4.1
  • Loading branch information
trenoncourt authored Jan 18, 2018
2 parents 57cbbbf + 2b15fe6 commit 9ce4b0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/AutoQueryable/AutoQueryable.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Description>AutoQueryable add auto querying functionality like OData with best url practices to Asp.Net Core.</Description>
<AssemblyTitle>AutoQueryable add auto querying functionality like OData with best url practices to Asp.Net Core.</AssemblyTitle>
<VersionPrefix>1.4.0</VersionPrefix>
<VersionPrefix>1.4.1</VersionPrefix>
<Authors>Thibaut Renoncourt</Authors>
<TargetFrameworks>netstandard1.3</TargetFrameworks>
<AssemblyName>AutoQueryable</AssemblyName>
Expand All @@ -14,9 +14,9 @@
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<Version>1.4.0</Version>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<FileVersion>1.4.0.0</FileVersion>
<Version>1.4.1</Version>
<AssemblyVersion>1.4.1.0</AssemblyVersion>
<FileVersion>1.4.1.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/AutoQueryable/Helpers/QueryableHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static dynamic GetAutoQuery<TEntity>(string queryString, Type entityType,
}

// Get criteria & clauses from choosen provider (AQ, OData, ...)
string[] queryStringParts = queryString.GetParts();
string[] queryStringParts = Uri.UnescapeDataString(queryString).GetParts();
ICriteriaProvider criteriaProvider = ProviderFactory.GetCriteriaProvider(profile?.ProviderType);
IList<Criteria> criterias = profile.IsClauseAllowed(ClauseType.Filter) ? criteriaProvider.GetCriterias(entityType, queryStringParts, profile).ToList() : null;
IClauseProvider clauseProvider = ProviderFactory.GetClauseProvider(profile?.ProviderType);
Expand Down

0 comments on commit 9ce4b0d

Please sign in to comment.