File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22<Project >
33 <PropertyGroup >
44 <NoWarn >CS1591;CS0649;CS8632;EF1001</NoWarn >
5- <Version >9.0 .0</Version >
5+ <Version >9.1 .0</Version >
66 <AssemblyVersion >1.0.0</AssemblyVersion >
77 <PackageTags >EntityFramework, Verify</PackageTags >
88 <Description >Extends Verify (https://github.com/VerifyTests/Verify) to allow verification of EntityFramework bits.</Description >
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ public static class VerifyEntityFramework
44{
55 public static async IAsyncEnumerable < object > AllData ( this DbContext data )
66 {
7- foreach ( var entityType in data . EntityTypes ( ) . Where ( p => ! p . IsOwned ( ) ) )
7+ foreach ( var entityType in data
8+ . EntityTypes ( )
9+ . OrderBy ( _ => _ . Name )
10+ . Where ( _ => ! _ . IsOwned ( ) ) )
811 {
912 var clrType = entityType . ClrType ;
1013 var set = data . Set ( clrType ) ;
You can’t perform that action at this time.
0 commit comments