Bitbean.Analyzers.EfCore
1.0.0
See the version list below for details.
dotnet add package Bitbean.Analyzers.EfCore --version 1.0.0
NuGet\Install-Package Bitbean.Analyzers.EfCore -Version 1.0.0
<PackageReference Include="Bitbean.Analyzers.EfCore" Version="1.0.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
<PackageVersion Include="Bitbean.Analyzers.EfCore" Version="1.0.0" />
<PackageReference Include="Bitbean.Analyzers.EfCore"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add Bitbean.Analyzers.EfCore --version 1.0.0
#r "nuget: Bitbean.Analyzers.EfCore, 1.0.0"
#:package Bitbean.Analyzers.EfCore@1.0.0
#addin nuget:?package=Bitbean.Analyzers.EfCore&version=1.0.0
#tool nuget:?package=Bitbean.Analyzers.EfCore&version=1.0.0
Custom Roslyn analyzers for Entity Framework Core performance and best practices. Includes EFCORE001 (IReadOnlySet.Contains detection) and EFCORE002 (GroupBy without Select detection) with automatic code fixes.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v1.0.0:
- EFCORE001: Detects IReadOnlySet<T>.Contains() usage that may not translate to SQL
- EFCORE002: Detects GroupBy() without Select() that causes in-memory grouping
- Automatic code fixes for both analyzers
- Comprehensive test coverage