Skip to content

Commit

Permalink
Update version to 9.0.0 (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
habbes authored Aug 20, 2024
1 parent 0785691 commit e8e7eaa
Show file tree
Hide file tree
Showing 8 changed files with 2,121 additions and 2,120 deletions.
1 change: 1 addition & 0 deletions sample/ODataRoutingSample/ODataRoutingSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.6" />
<PackageReference Include="Microsoft.OData.Edm" Version="8.0.1" />
<PackageReference Include="Microsoft.OpenApi.OData" Version="1.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.OData.ModelBuilder" Version="1.0.9" />
<PackageReference Include="Microsoft.OData.Core" Version="8.0.0-rc.1" />
<PackageReference Include="Microsoft.OData.Edm" Version="8.0.0-rc.1" />
<PackageReference Include="Microsoft.OData.ModelBuilder" Version="2.0.0" />
<PackageReference Include="Microsoft.OData.Core" Version="8.0.1" />
<PackageReference Include="Microsoft.OData.Edm" Version="8.0.1" />
<PackageReference Include="Microsoft.Spatial" Version="8.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Spatial" Version="8.0.0-rc.1" />
</ItemGroup>

<ItemGroup>
Expand Down
92 changes: 46 additions & 46 deletions src/Microsoft.AspNetCore.OData/Microsoft.AspNetCore.OData.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10956,6 +10956,52 @@
<param name="nodeIn">The node to be translated.</param>
<returns>The translated node.</returns>
</member>
<member name="T:Microsoft.AspNetCore.OData.Query.QueryFilterProvider">
<summary>
An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider" /> that applies an action filter to
any action with an <see cref="T:System.Linq.IQueryable" /> or <see cref="T:System.Linq.IQueryable`1" /> return type
that doesn't bind a parameter of type <see cref="T:Microsoft.AspNetCore.OData.Query.ODataQueryOptions" />.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.#ctor(Microsoft.AspNetCore.Mvc.Filters.IActionFilter)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.OData.Query.QueryFilterProvider" /> class.
</summary>
<param name="queryFilter">The action filter that executes the query.</param>
</member>
<member name="P:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.QueryFilter">
<summary>
Gets the action filter that executes the query.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.Order">
<summary>
Gets the order value for determining the order of execution of providers. Providers
execute in ascending numeric value of the Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order
property.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)">
<summary>
Provides filters to apply to the specified action.
</summary>
<param name="context">The filter context.</param>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)">
<summary>
Summary:
Called in decreasing Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order,
after all Microsoft.AspNetCore.Mvc.Filters.IFilterProviders have executed once.
</summary>
<param name="context">The Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.</param>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.IsIQueryable(System.Type)">
<summary>
Determines whether the given type is IQueryable.
</summary>
<param name="type">The type</param>
<returns><c>true</c> if the type is IQueryable.</returns>
</member>
<member name="T:Microsoft.AspNetCore.OData.Query.ApplyQueryOption">
<summary>
This defines a $apply OData query option for querying.
Expand Down Expand Up @@ -11707,52 +11753,6 @@
</summary>
<param name="validationSettings">The <see cref="T:Microsoft.AspNetCore.OData.Query.Validator.ODataValidationSettings"/> instance which contains all the validation settings.</param>
</member>
<member name="T:Microsoft.AspNetCore.OData.Query.QueryFilterProvider">
<summary>
An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider" /> that applies an action filter to
any action with an <see cref="T:System.Linq.IQueryable" /> or <see cref="T:System.Linq.IQueryable`1" /> return type
that doesn't bind a parameter of type <see cref="T:Microsoft.AspNetCore.OData.Query.ODataQueryOptions" />.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.#ctor(Microsoft.AspNetCore.Mvc.Filters.IActionFilter)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.OData.Query.QueryFilterProvider" /> class.
</summary>
<param name="queryFilter">The action filter that executes the query.</param>
</member>
<member name="P:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.QueryFilter">
<summary>
Gets the action filter that executes the query.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.Order">
<summary>
Gets the order value for determining the order of execution of providers. Providers
execute in ascending numeric value of the Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order
property.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)">
<summary>
Provides filters to apply to the specified action.
</summary>
<param name="context">The filter context.</param>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)">
<summary>
Summary:
Called in decreasing Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order,
after all Microsoft.AspNetCore.Mvc.Filters.IFilterProviders have executed once.
</summary>
<param name="context">The Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.</param>
</member>
<member name="M:Microsoft.AspNetCore.OData.Query.QueryFilterProvider.IsIQueryable(System.Type)">
<summary>
Determines whether the given type is IQueryable.
</summary>
<param name="type">The type</param>
<returns><c>true</c> if the type is IQueryable.</returns>
</member>
<member name="F:Microsoft.AspNetCore.OData.Query.SelectExpandIncludedProperty._propertySegment">
<summary>
the corresponding property segment.
Expand Down
Loading

1 comment on commit e8e7eaa

@chris261012
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


Please sign in to comment.