BootstrapBlazor.Table.Freesql
8.10.5
Prefix Reserved
dotnet add package BootstrapBlazor.Table.Freesql --version 8.10.5
NuGet\Install-Package BootstrapBlazor.Table.Freesql -Version 8.10.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="BootstrapBlazor.Table.Freesql" Version="8.10.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BootstrapBlazor.Table.Freesql --version 8.10.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: BootstrapBlazor.Table.Freesql, 8.10.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.
// Install BootstrapBlazor.Table.Freesql as a Cake Addin #addin nuget:?package=BootstrapBlazor.Table.Freesql&version=8.10.5 // Install BootstrapBlazor.Table.Freesql as a Cake Tool #tool nuget:?package=BootstrapBlazor.Table.Freesql&version=8.10.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
BootstrapBlazor 的 Table 扩展
示例1:PinPaiName=品牌商1
@using FreeSql.Internal.Model
<TableAdv DynamicFilterInfo="DynamicFilterInfo" />
@code {
DynamicFilterInfo DynamicFilterInfo =>
new DynamicFilterInfo()
{
Field = nameof(XianMu.PinPaiName),
Operator = DynamicFilterOperator.Equal,
Value = "品牌商1"
};
}
示例2:(PinPaiName=品牌商1 && QuDaoShangName=渠道商2) || TuiGuangShangName=推广商3
@using FreeSql.Internal.Model
<TableAdv DynamicFilterInfo="DynamicFilterInfo" />
@code {
DynamicFilterInfo DynamicFilterInfo => GenDynamicFilterInfo();
DynamicFilterInfo GenDynamicFilterInfo()
{
//第一层
var filters = new List<DynamicFilterInfo>();
filters.Add(new DynamicFilterInfo()
{
Field = nameof(XianMu.PinPaiName),
Operator = DynamicFilterOperator.Equal,
Value = "品牌商1"
});
filters.Add(new DynamicFilterInfo()
{
Field = nameof(XianMu.QuDaoShangName),
Operator = DynamicFilterOperator.Equal,
Value = "渠道商2"
});
DynamicFilterInfo filterWhereCascadeAnd = new DynamicFilterInfo()
{
Logic = DynamicFilterLogic.And,
Filters = filters
};
//第二层
var filters2 = new DynamicFilterInfo()
{
Field = nameof(XianMu.TuiGuangShangName),
Operator = DynamicFilterOperator.Equal,
Value = "推广商3"
};
//生成带预设条件的复合查询
var filtersWhereCascade = new List<DynamicFilterInfo>();
filtersWhereCascade.Add(filterWhereCascadeAnd);
filtersWhereCascade.Add(filters2);
DynamicFilterInfo filterWhereCascadeOr = new DynamicFilterInfo()
{
Logic = DynamicFilterLogic.Or,
Filters = filtersWhereCascade
};
return filterWhereCascadeOr;
}
}
Product | Versions 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 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.
-
net6.0
- BootstrapBlazor.Table.ImportExportsService (>= 8.10.5)
- Densen.FreeSql.Extensions.BootstrapBlazor (>= 8.10.5)
- Microsoft.AspNetCore.Components.Web (>= 6.0.35)
- Microsoft.Extensions.Configuration (>= 8.0.0)
-
net7.0
- BootstrapBlazor.Table.ImportExportsService (>= 8.10.5)
- Densen.FreeSql.Extensions.BootstrapBlazor (>= 8.10.5)
- Microsoft.AspNetCore.Components.Web (>= 7.0.20)
- Microsoft.Extensions.Configuration (>= 8.0.0)
-
net8.0
- BootstrapBlazor.Table.ImportExportsService (>= 8.10.5)
- Densen.FreeSql.Extensions.BootstrapBlazor (>= 8.10.5)
- Microsoft.AspNetCore.Components.Web (>= 8.0.10)
- Microsoft.Extensions.Configuration (>= 8.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 | Downloads | Last updated |
---|---|---|
8.10.5 | 73 | 10/16/2024 |
8.10.4 | 71 | 10/16/2024 |
8.7.0 | 116 | 7/7/2024 |
8.3.4 | 130 | 3/9/2024 |
8.3.0 | 120 | 2/25/2024 |
8.1.10 | 144 | 1/18/2024 |
8.0.0 | 191 | 11/15/2023 |
7.10.4 | 162 | 9/3/2023 |
7.10.2 | 128 | 9/3/2023 |
7.10.1 | 155 | 9/2/2023 |
7.8.0 | 160 | 7/15/2023 |
7.7.9 | 179 | 6/12/2023 |
7.7.0 | 163 | 6/2/2023 |
7.2.3 | 232 | 3/20/2023 |
7.2.2 | 234 | 3/20/2023 |
7.1.1 | 259 | 1/30/2023 |