EasyAppDev.Blazor.AutoComplete.OData
1.0.5
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package EasyAppDev.Blazor.AutoComplete.OData --version 1.0.5
NuGet\Install-Package EasyAppDev.Blazor.AutoComplete.OData -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasyAppDev.Blazor.AutoComplete.OData" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyAppDev.Blazor.AutoComplete.OData" Version="1.0.5" />
<PackageReference Include="EasyAppDev.Blazor.AutoComplete.OData" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EasyAppDev.Blazor.AutoComplete.OData --version 1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasyAppDev.Blazor.AutoComplete.OData, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EasyAppDev.Blazor.AutoComplete.OData@1.0.5
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EasyAppDev.Blazor.AutoComplete.OData&version=1.0.5
#tool nuget:?package=EasyAppDev.Blazor.AutoComplete.OData&version=1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EasyAppDev.Blazor.AutoComplete.OData
OData integration for the Blazor AutoComplete component. Query OData v3/v4 endpoints with automatic $filter generation, multi-field search, and all filter strategies.
Installation
dotnet add package EasyAppDev.Blazor.AutoComplete.OData
Quick Start
@using EasyAppDev.Blazor.AutoComplete
@using EasyAppDev.Blazor.AutoComplete.OData
@inject HttpClient Http
<AutoComplete TItem="Product"
DataSource="@_odataSource"
TextField="@(p => p.Name)"
Placeholder="Search products..." />
@code {
private ODataDataSource<Product> _odataSource = null!;
protected override void OnInitialized()
{
var options = new ODataOptions
{
EndpointUrl = "https://api.example.com/odata/products",
FilterStrategy = ODataFilterStrategy.Contains,
Top = 20,
Select = new[] { "Id", "Name", "Description" }
};
_odataSource = new ODataDataSource<Product>(
Http, options, searchFieldNames: new[] { "Name", "Description" });
}
}
Features
- OData v3 + v4 Support - Automatic syntax selection
- StartsWith Filter -
startswith(field,'value') - Contains Filter -
contains(field,'value')(v4) /substringof('value',field)(v3) - Multi-Field Search - OR-combined filters across multiple properties
- Additional Filters - Static filters ANDed with search
- Fuzzy Fallback - Client-side re-ranking for typo tolerance
- Error Handling - Events and
LastErrorproperty for graceful error handling
Configuration Options
| Option | Description |
|---|---|
EndpointUrl |
OData endpoint URL |
Version |
V3 or V4 (default: V4) |
FilterStrategy |
StartsWith, Contains, FuzzyFallback |
Top |
Max results ($top) |
Select |
Fields to return ($select) |
OrderBy |
Sort order ($orderby) |
AdditionalFilter |
Extra filter conditions |
CaseInsensitive |
Use tolower() wrapper |
Filter Strategy Comparison
| Strategy | OData v4 | OData v3 | Use Case |
|---|---|---|---|
StartsWith |
startswith(field,'value') |
startswith(field,'value') |
Fast prefix matching |
Contains |
contains(field,'value') |
substringof('value',field) |
Find anywhere in string |
FuzzyFallback |
contains() + client re-rank |
substringof() + client re-rank |
Typo tolerance |
License
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- EasyAppDev.Blazor.AutoComplete (>= 1.0.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Http (>= 9.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
-
net8.0
- EasyAppDev.Blazor.AutoComplete (>= 1.0.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Http (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
-
net9.0
- EasyAppDev.Blazor.AutoComplete (>= 1.0.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Http (>= 9.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version 1.0.5 - Added OData integration package (EasyAppDev.Blazor.AutoComplete.OData) with support for OData v3/v4 endpoints, automatic $filter generation, multi-field search, and all filter strategies (StartsWith, Contains, FuzzyFallback). Enhanced demo pages with interactive search hints.