Microsoft.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter 3.6.2

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.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter --version 3.6.2
NuGet\Install-Package Microsoft.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter -Version 3.6.2
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.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter" Version="3.6.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter --version 3.6.2
#r "nuget: Microsoft.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter, 3.6.2"
#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.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter as a Cake Addin
#addin nuget:?package=Microsoft.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter&version=3.6.2

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

About

Use this package if the data you want to display in the FluentDataGrid (component in the Microsoft,Fast.Components.FluentUI 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.Fast.Components.FluentUI.DataGrid.EntityFrameworkAdapter

Usage

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

builder.Services.AddDataGridEntityFrameworkAdapter();
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.6.2 75 4/23/2024
3.6.1 126 4/11/2024
3.6.0 175 3/7/2024
3.5.4 248 1/31/2024
3.5.1 138 1/17/2024
3.3.0 553 11/2/2023
3.0.0 1,244 9/4/2023
2.1.4 1,303 3/21/2023
2.0.1 492 1/10/2023
2.0.0 301 1/10/2023