File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,14 @@ public async Task Test1()
113
113
TestContext . WriteLine ( Query . LessThan ( "releasedYear" , 1990 ) ) ;
114
114
TestContext . WriteLine ( Query . GreaterThan ( "releasedYear" , 1990 ) ) ;
115
115
TestContext . WriteLine ( Query . Search ( "name" , "john" ) ) ;
116
+ TestContext . WriteLine ( Query . IsNull ( "name" ) ) ;
117
+ TestContext . WriteLine ( Query . IsNotNull ( "name" ) ) ;
118
+ TestContext . WriteLine ( Query . Between ( "age" , 50 , 100 ) ) ;
119
+ TestContext . WriteLine ( Query . Between ( "age" , 50.5 , 100.5 ) ) ;
120
+ TestContext . WriteLine ( Query . Between ( "name" , "Anna" , "Brad" ) ) ;
121
+ TestContext . WriteLine ( Query . StartsWith ( "name" , "Ann" ) ) ;
122
+ TestContext . WriteLine ( Query . EndsWith ( "name" , "nne" ) ) ;
123
+ TestContext . WriteLine ( Query . Select ( new List < string > { "name" , "age" } ) ) ;
116
124
TestContext . WriteLine ( Query . OrderAsc ( "title" ) ) ;
117
125
TestContext . WriteLine ( Query . OrderDesc ( "title" ) ) ;
118
126
TestContext . WriteLine ( Query . CursorAfter ( "my_movie_id" ) ) ;
You can’t perform that action at this time.
0 commit comments