File tree Expand file tree Collapse file tree 5 files changed +15
-11
lines changed
Verify.EntityFramework.Tests
Verify.EntityFrameworkClassic.Tests
Verify.EntityFramework/MissingOrder Expand file tree Collapse file tree 5 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ indent_style = space
1111indent_size = 4
1212charset = utf-8
1313
14+ # Redundant accessor body
15+ resharper_redundant_accessor_body_highlighting = error
16+
17+ # Replace with field keyword
18+ resharper_replace_with_field_keyword_highlighting = error
1419
1520# Declare types in namespaces
1621dotnet_diagnostic.CA1050.severity = None
@@ -200,7 +205,8 @@ resharper_field_can_be_made_read_only_local_highlighting = none
200205resharper_merge_into_logical_pattern_highlighting = warning
201206resharper_merge_into_pattern_highlighting = error
202207resharper_method_has_async_overload_highlighting = warning
203- resharper_partial_type_with_single_part_highlighting = error
208+ # because stop rider giving errors before source generators have run
209+ resharper_partial_type_with_single_part_highlighting = warning
204210resharper_redundant_base_qualifier_highlighting = warning
205211resharper_redundant_cast_highlighting = error
206212resharper_redundant_empty_object_creation_argument_list_highlighting = error
Original file line number Diff line number Diff line change 99 <PackageVersion Include =" EntityFramework" Version =" 6.5.1" />
1010 <PackageVersion Include =" MarkdownSnippets.MsBuild" Version =" 27.0.2" />
1111 <PackageVersion Include =" Microsoft.AspNetCore.Mvc.Testing" Version =" 8.0.11" />
12- <PackageVersion Include =" Microsoft.EntityFrameworkCore" Version =" 9 .0.0 " />
13- <PackageVersion Include =" Microsoft.EntityFrameworkCore.InMemory" Version =" 9 .0.0 " />
14- <PackageVersion Include =" Microsoft.EntityFrameworkCore.Relational" Version =" 8.0.10 " />
15- <PackageVersion Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 9 .0.0 " />
16- <PackageVersion Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 8.0.10 " />
12+ <PackageVersion Include =" Microsoft.EntityFrameworkCore" Version =" 8 .0.11 " />
13+ <PackageVersion Include =" Microsoft.EntityFrameworkCore.InMemory" Version =" 8 .0.11 " />
14+ <PackageVersion Include =" Microsoft.EntityFrameworkCore.Relational" Version =" 8.0.11 " />
15+ <PackageVersion Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 8 .0.11 " />
16+ <PackageVersion Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 8.0.11 " />
1717 <PackageVersion Include =" Microsoft.NET.Test.Sdk" Version =" 17.12.0" />
1818 <PackageVersion Include =" NUnit" Version =" 4.2.2" />
1919 <PackageVersion Include =" NUnit3TestAdapter" Version =" 4.6.0" />
2424 <PackageVersion Include =" Verify.DiffPlex" Version =" 3.1.2" />
2525 <PackageVersion Include =" Verify.NUnit" Version =" 28.2.1" />
2626 <PackageVersion Include =" Verify.SqlServer" Version =" 10.1.0" />
27- <!-- explicit to avoid CVE -->
28- <PackageVersion Include =" System.Text.Json" Version =" 8.0.5" />
2927 </ItemGroup >
3028</Project >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFramework >net8 .0</TargetFramework >
3+ <TargetFramework >net9 .0</TargetFramework >
44 </PropertyGroup >
55 <ItemGroup >
66 <PackageReference Include =" EfLocalDb" />
Original file line number Diff line number Diff line change 3535 {
3636 if ( orderedExpression . Expression is ColumnExpression columnExpression )
3737 {
38- if ( columnExpression . Table == tableExpression )
38+ if ( columnExpression . TableAlias == tableExpression . Name )
3939 {
4040 return base . Visit ( expression ) ;
4141 }
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFramework >net8 .0</TargetFramework >
3+ <TargetFramework >net9 .0</TargetFramework >
44 </PropertyGroup >
55 <ItemGroup >
66 <PackageReference Include =" EntityFramework" />
You can’t perform that action at this time.
0 commit comments