![]() |
VOOZH | about |
dotnet add package Syncfusion.Blazor.Data --version 33.2.13
NuGet\Install-Package Syncfusion.Blazor.Data -Version 33.2.13
<PackageReference Include="Syncfusion.Blazor.Data" Version="33.2.13" />
<PackageVersion Include="Syncfusion.Blazor.Data" Version="33.2.13" />Directory.Packages.props
<PackageReference Include="Syncfusion.Blazor.Data" />Project file
paket add Syncfusion.Blazor.Data --version 33.2.13
#r "nuget: Syncfusion.Blazor.Data, 33.2.13"
#:package Syncfusion.Blazor.Data@33.2.13
#addin nuget:?package=Syncfusion.Blazor.Data&version=33.2.13Install as a Cake Addin
#tool nuget:?package=Syncfusion.Blazor.Data&version=33.2.13Install as a Cake Tool
The Syncfusion® Blazor DataManager is a data management component that handles CRUD operations, sorting, filtering, grouping, and paging for Blazor applications. Supports both local data sources (e.g., IEnumerable, ObservableCollection) and remote data sources (e.g., JSON/REST APIs, OData).
Components/App.razor or App.razor file.wwwroot/index.html file.<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
Program.cs file.using Syncfusion.Blazor;
builder.Services.AddSyncfusionBlazor();
@using Syncfusion.Blazor.Data
@using Syncfusion.Blazor.Grids
<SfGrid TValue="EmployeeData" ID="Grid">
<SfDataManager Json="@Employees"></SfDataManager>
<GridColumns>
<GridColumn Field="@nameof(EmployeeData.EmployeeID)" TextAlign="Syncfusion.Blazor.Grids.TextAlign.Center" HeaderText="Employee ID" Width="120"></GridColumn>
<GridColumn Field="@nameof(EmployeeData.Name)" HeaderText="First Name" Width="130"></GridColumn>
<GridColumn Field="@nameof(EmployeeData.Title)" HeaderText="Title" Width="120"></GridColumn>
</GridColumns>
</SfGrid>
@code {
public class EmployeeData
{
public int EmployeeID { get; set; }
public string Name { get; set; }
public string Title { get; set; }
}
public List<EmployeeData> Employees = new()
{
new EmployeeData { EmployeeID = 1, Name = "Nancy Fuller", Title = "Vice President" },
new EmployeeData { EmployeeID = 2, Name = "Steven Buchanan", Title = "Sales Manager" },
new EmployeeData { EmployeeID = 3, Name = "Janet Leverling", Title = "Sales Representative" },
new EmployeeData { EmployeeID = 4, Name = "Andrew Davolio", Title = "Inside Sales Coordinator" },
new EmployeeData { EmployeeID = 5, Name = "Steven Peacock", Title = "Inside Sales Coordinator" },
new EmployeeData { EmployeeID = 6, Name = "Janet Buchanan", Title = "Sales Representative" },
new EmployeeData { EmployeeID = 7, Name = "Andrew Fuller", Title = "Inside Sales Coordinator" },
new EmployeeData { EmployeeID = 8, Name = "Steven Davolio", Title = "Inside Sales Coordinato" },
new EmployeeData { EmployeeID = 9, Name = "Janet Davolio", Title = "Sales Representative" },
new EmployeeData { EmployeeID = 10, Name = "Andrew Buchanan", Title = "Sales Representative" }
};
}
This is a commercial product and requires a paid license for possession or use. Review the Syncfusion® EULA.
Syncfusion® provides 1600+ UI components and frameworks for web, mobile, and desktop development across multiple platforms:
Web: Blazor | ASP.NET Core | ASP.NET MVC | JavaScript | Angular | React | Vue
Desktop: WinForms | WPF | WinUI
Learn more at www.syncfusion.com.
| Toll Free: 1-888-9-DOTNET
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on Syncfusion.Blazor.Data:
| Package | Downloads |
|---|---|
|
Syncfusion.Blazor.Inputs
Comprehensive Blazor Syncfusion® input components including TextBox, MaskedTextBox, NumericTextBox, Color Picker, File Upload, Slider, Rating, Signature, OTP Input, and Speech To Text. Features data validation, formatting, keyboard navigation, and accessibility support for .NET 8+. |
|
|
Syncfusion.Blazor.Lists
Syncfusion® Blazor ListView component for displaying data in list format with advanced features including sorting, filtering, grouping, and custom templates. Part of Syncfusion® UI component library for .NET 8+. |
|
|
Syncfusion.Blazor.DropDowns
Provides Syncfusion® Blazor dropdown and selection components including AutoComplete, ComboBox, DropDownList, ListBox, and MultiSelect controls. Supports data binding, filtering, grouping, cascading, templates, and accessibility features for building robust selection interfaces. |
|
|
Syncfusion.Blazor.Navigations
Syncfusion® Provides Blazor navigation and menu components for building interactive navigation structures. Includes Accordion, Sidebar, Tabs, Menu Bar, Context Menu, Toolbar, and Tree View with support for keyboard navigation, accessibility features, and customizable templates. |
|
|
Syncfusion.Blazor.Grid
Syncfusion® Blazor DataGrid component for rendering high-performance, feature-rich tabular UI in .NET Blazor applications. Includes virtualization, paging, sorting, filtering, grouping, editing, templates, and export (Excel/PDF). |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 33.2.13 | 1,961 | 6/16/2026 |
| 33.2.12 | 7,220 | 6/9/2026 |
| 33.2.10 | 6,396 | 6/2/2026 |
| 33.2.8 | 6,236 | 5/26/2026 |
| 33.2.7 | 8,146 | 5/19/2026 |
| 33.2.6 | 10,511 | 5/12/2026 |
| 33.2.5 | 14,766 | 5/4/2026 |
| 33.2.4 | 11,027 | 4/27/2026 |
| 33.2.3 | 18,078 | 4/21/2026 |
| 33.1.49 | 14,597 | 4/13/2026 |
| 33.1.47 | 13,584 | 4/6/2026 |
| 33.1.46 | 6,566 | 3/30/2026 |
| 33.1.45 | 10,581 | 3/23/2026 |
| 33.1.44 | 21,922 | 3/16/2026 |
| 32.2.9 | 19,859 | 3/9/2026 |
| 32.2.8 | 13,576 | 3/2/2026 |
| 32.2.7 | 19,744 | 2/23/2026 |
| 32.2.5 | 13,789 | 2/16/2026 |
| 32.2.4 | 23,321 | 2/10/2026 |
| 32.2.3 | 21,474 | 2/5/2026 |