File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed
test/EFCore.Sqlite.FunctionalTests Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 35
35
<NewtonsoftJsonPackageVersion >11.0.2</NewtonsoftJsonPackageVersion >
36
36
<OracleManagedDataAccessPackageVersion >12.2.1100</OracleManagedDataAccessPackageVersion >
37
37
<RemotionLinqPackageVersion >2.2.0</RemotionLinqPackageVersion >
38
- <SQLitePCLRawBundleGreenPackageVersion >1.1.12 </SQLitePCLRawBundleGreenPackageVersion >
39
- <SQLitePCLRawBundleSqlcipherPackageVersion >1.1.12 </SQLitePCLRawBundleSqlcipherPackageVersion >
40
- <SQLitePCLRawCorePackageVersion >1.1.12 </SQLitePCLRawCorePackageVersion >
38
+ <SQLitePCLRawBundleGreenPackageVersion >1.1.15 </SQLitePCLRawBundleGreenPackageVersion >
39
+ <SQLitePCLRawBundleSqlcipherPackageVersion >1.1.14 </SQLitePCLRawBundleSqlcipherPackageVersion >
40
+ <SQLitePCLRawCorePackageVersion >1.1.14 </SQLitePCLRawCorePackageVersion >
41
41
<StyleCopAnalyzersPackageVersion >1.0.0</StyleCopAnalyzersPackageVersion >
42
42
<SystemCollectionsImmutablePackageVersion >1.5.0</SystemCollectionsImmutablePackageVersion >
43
43
<SystemComponentModelAnnotationsPackageVersion >4.5.0</SystemComponentModelAnnotationsPackageVersion >
Original file line number Diff line number Diff line change 2
2
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3
3
4
4
using Microsoft . EntityFrameworkCore . TestUtilities ;
5
+ using Microsoft . EntityFrameworkCore . TestUtilities . Xunit ;
5
6
using Xunit . Abstractions ;
6
7
7
8
namespace Microsoft . EntityFrameworkCore . Query
@@ -684,6 +685,12 @@ public override void Select_datetime_millisecond_component()
684
685
}
685
686
#endif
686
687
688
+ [ ConditionalFact ( Skip = "Issue#21541" ) ]
689
+ public override void Project_single_element_from_collection_with_multiple_OrderBys_Take_and_FirstOrDefault_2 ( )
690
+ {
691
+ base . Project_single_element_from_collection_with_multiple_OrderBys_Take_and_FirstOrDefault_2 ( ) ;
692
+ }
693
+
687
694
private void AssertSql ( params string [ ] expected )
688
695
=> Fixture . TestSqlLoggerFactory . AssertBaseline ( expected ) ;
689
696
}
Original file line number Diff line number Diff line change @@ -304,10 +304,10 @@ RandomProperty randomType
304
304
{
305
305
var columns = dbModel . Tables . Single ( ) . Columns ;
306
306
307
- Assert . Equal ( "integer" , columns . Single ( c => c . Name == "IntegerProperty" ) . StoreType ) ;
308
- Assert . Equal ( "real" , columns . Single ( c => c . Name == "RealProperty" ) . StoreType ) ;
309
- Assert . Equal ( "text" , columns . Single ( c => c . Name == "TextProperty" ) . StoreType ) ;
310
- Assert . Equal ( "blob" , columns . Single ( c => c . Name == "BlobProperty" ) . StoreType ) ;
307
+ Assert . Equal ( "integer" , columns . Single ( c => c . Name == "IntegerProperty" ) . StoreType , ignoreCase : true ) ;
308
+ Assert . Equal ( "real" , columns . Single ( c => c . Name == "RealProperty" ) . StoreType , ignoreCase : true ) ;
309
+ Assert . Equal ( "text" , columns . Single ( c => c . Name == "TextProperty" ) . StoreType , ignoreCase : true ) ;
310
+ Assert . Equal ( "blob" , columns . Single ( c => c . Name == "BlobProperty" ) . StoreType , ignoreCase : true ) ;
311
311
Assert . Equal ( "randomType" , columns . Single ( c => c . Name == "RandomProperty" ) . StoreType ) ;
312
312
} ,
313
313
@"DROP TABLE StoreType;" ) ;
You can’t perform that action at this time.
0 commit comments