Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter 4.7.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter --version 4.7.0
NuGet\Install-Package Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter -Version 4.7.0
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="Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter" Version="4.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter --version 4.7.0
#r "nuget: Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter, 4.7.0"
#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.
// Install Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter as a Cake Addin
#addin nuget:?package=Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter&version=4.7.0

// Install Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter as a Cake Tool
#tool nuget:?package=Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter&version=4.7.0

About

Use this package if the data you want to display in the FluentDataGrid (component in the Microsoft.FluentUI.AspNetCore.Components library) comes from EF Core:

EF Core's DataContext gives you a DbSet property for each table in your database. Simply supply this as the grid's RowsData parameter:

@inject ApplicationDbContext MyDbContext

<FluentDataGrid RowsData="@MyDbContext.People">
    ...
</FluentDataGrid>

You may also use any EF-supported LINQ operator to filter the data before passing it:

@inject ApplicationDbContext MyDbContext

<FluentDataGrid RowsData="@MyDbContext.Documents.Where(d => d.CategoryId == currentCategoryId)">
    ...
</FluentDataGrid>

The FluentDataGrid recognizes EF-supplied IQueryable instances and knows how to resolve queries asynchronously for efficiency.

Installation

Install the package by running the command:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter

Usage

In your Program.cs file you need to add the following:

builder.Services.AddDataGridEntityFrameworkAdapter();

Support

The Microsoft Fluent UI Blazor library is an open source project and is not an official part of ASP.NET Core, which means it�s not officially supported and isn�t committed to ship updates as part of any official .NET updates. It is built and maintained by Microsoft employees (and other contributors) and offers support, like most other open source projects, on a best effort base through the GitHub repository only.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Microsoft.FluentUI.AspNetCore.Components.DataGrid.EntityFrameworkAdapter:

Package Downloads
Corsinvest.AppHero.Core.FluentUI

Package Description

mdimai666.Blast.AppFront.Main

Shared project using Blast client apps with UI framework

Kimi.FluentUiExtension

Microsoft .net8 blazor fluentUi extensions

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.7.0 614 4/23/2024
4.6.1 1,270 4/10/2024
4.6.0 804 3/28/2024
4.5.0 2,241 3/7/2024
4.4.0 2,930 2/2/2024
4.3.1 1,797 1/12/2024
4.3.0 392 1/8/2024
4.2.1 1,442 12/20/2023
4.2.0 1,222 12/13/2023
4.1.0 763 11/28/2023
4.0.0 637 11/14/2023
4.0.0-rc.3 79 11/10/2023
4.0.0-rc.2 75 11/6/2023
4.0.0-rc.1 86 11/2/2023
4.0.0-preview.1 62 10/23/2023