@@ -1133,7 +1133,7 @@ public void AllByFieldOfPoco01Test()
1133
1133
using ( var transaction = session . OpenTransaction ( ) ) {
1134
1134
_ = session . Query . All < TestEntity > ( )
1135
1135
. Select ( e => new Poco { Name = e . Name } )
1136
- . All ( el => el . Name . IsNullOrEmpty ( ) ) ;
1136
+ . All ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1137
1137
}
1138
1138
}
1139
1139
@@ -1144,7 +1144,7 @@ public void AllByFieldOfPoco02Test()
1144
1144
using ( var transaction = session . OpenTransaction ( ) ) {
1145
1145
_ = session . Query . All < TestEntity > ( )
1146
1146
. Select ( e => new Poco { Name = e . Name , BaseName = e . Name } )
1147
- . All ( el => el . Name . IsNullOrEmpty ( ) ) ;
1147
+ . All ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1148
1148
}
1149
1149
}
1150
1150
@@ -1155,7 +1155,7 @@ public void AllByFieldOfPoco03Test()
1155
1155
using ( var transaction = session . OpenTransaction ( ) ) {
1156
1156
_ = session . Query . All < TestEntity > ( )
1157
1157
. Select ( e => new Poco { Name = e . Name , BaseName = e . Name } )
1158
- . All ( el => el . Name . IsNullOrEmpty ( ) ) ;
1158
+ . All ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1159
1159
}
1160
1160
}
1161
1161
@@ -1166,7 +1166,7 @@ public void AllByFieldOfPoco04Test()
1166
1166
using ( var transaction = session . OpenTransaction ( ) ) {
1167
1167
_ = Assert . Throws < QueryTranslationException > ( ( ) => session . Query . All < TestEntity > ( )
1168
1168
. Select ( e => new Poco { BaseName = e . Name } )
1169
- . All ( el => el . Name . IsNullOrEmpty ( ) ) ) ;
1169
+ . All ( el => string . IsNullOrEmpty ( el . Name ) ) ) ;
1170
1170
}
1171
1171
}
1172
1172
@@ -1177,7 +1177,7 @@ public void AllByFieldOfPoco05Test()
1177
1177
using ( var transaction = session . OpenTransaction ( ) ) {
1178
1178
_ = session . Query . All < TestEntity > ( )
1179
1179
. Select ( e => new Poco ( ) )
1180
- . All ( el => el . Name . IsNullOrEmpty ( ) ) ;
1180
+ . All ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1181
1181
}
1182
1182
}
1183
1183
@@ -1189,7 +1189,7 @@ public void AnyByFieldOfPoco01Test()
1189
1189
using ( var transaction = session . OpenTransaction ( ) ) {
1190
1190
_ = session . Query . All < TestEntity > ( )
1191
1191
. Select ( e => new Poco { Name = e . Name } )
1192
- . Any ( el => el . Name . IsNullOrEmpty ( ) ) ;
1192
+ . Any ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1193
1193
}
1194
1194
}
1195
1195
@@ -1200,7 +1200,7 @@ public void AnyByFieldOfPoco02Test()
1200
1200
using ( var transaction = session . OpenTransaction ( ) ) {
1201
1201
_ = session . Query . All < TestEntity > ( )
1202
1202
. Select ( e => new Poco { Name = e . Name , BaseName = e . Name } )
1203
- . Any ( el => el . Name . IsNullOrEmpty ( ) ) ;
1203
+ . Any ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1204
1204
}
1205
1205
}
1206
1206
@@ -1211,7 +1211,7 @@ public void AnyByFieldOfPoco03Test()
1211
1211
using ( var transaction = session . OpenTransaction ( ) ) {
1212
1212
_ = session . Query . All < TestEntity > ( )
1213
1213
. Select ( e => new Poco { Name = e . Name , BaseName = e . Name } )
1214
- . Any ( el => el . BaseName . IsNullOrEmpty ( ) ) ;
1214
+ . Any ( el => string . IsNullOrEmpty ( el . BaseName ) ) ;
1215
1215
}
1216
1216
}
1217
1217
@@ -1222,7 +1222,7 @@ public void AnyByFieldOfPoco04Test()
1222
1222
using ( var transaction = session . OpenTransaction ( ) ) {
1223
1223
_ = session . Query . All < TestEntity > ( )
1224
1224
. Select ( e => new Poco { BaseName = e . Name } )
1225
- . Any ( el => el . BaseName . IsNullOrEmpty ( ) ) ;
1225
+ . Any ( el => string . IsNullOrEmpty ( el . BaseName ) ) ;
1226
1226
}
1227
1227
}
1228
1228
@@ -1233,7 +1233,7 @@ public void AnyByFieldOfPoco05Test()
1233
1233
using ( var transaction = session . OpenTransaction ( ) ) {
1234
1234
_ = session . Query . All < TestEntity > ( )
1235
1235
. Select ( e => new Poco ( ) )
1236
- . Any ( el => el . Name . IsNullOrEmpty ( ) ) ;
1236
+ . Any ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1237
1237
}
1238
1238
}
1239
1239
@@ -1347,7 +1347,7 @@ public void CountByFieldOfPoco01Test()
1347
1347
using ( var transaction = session . OpenTransaction ( ) ) {
1348
1348
_ = session . Query . All < TestEntity > ( )
1349
1349
. Select ( e => new Poco { Name = e . Name } )
1350
- . Count ( el => el . Name . IsNullOrEmpty ( ) ) ;
1350
+ . Count ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1351
1351
}
1352
1352
}
1353
1353
@@ -1358,7 +1358,7 @@ public void CountByFieldOfPoco02Test()
1358
1358
using ( var transaction = session . OpenTransaction ( ) ) {
1359
1359
_ = session . Query . All < TestEntity > ( )
1360
1360
. Select ( e => new Poco { Name = e . Name , BaseName = e . Name } )
1361
- . Count ( el => el . Name . IsNullOrEmpty ( ) ) ;
1361
+ . Count ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1362
1362
}
1363
1363
}
1364
1364
@@ -1369,7 +1369,7 @@ public void CountByFieldOfPoco03Test()
1369
1369
using ( var transaction = session . OpenTransaction ( ) ) {
1370
1370
_ = session . Query . All < TestEntity > ( )
1371
1371
. Select ( e => new Poco { Name = e . Name , BaseName = e . Name } )
1372
- . Count ( el => el . BaseName . IsNullOrEmpty ( ) ) ;
1372
+ . Count ( el => string . IsNullOrEmpty ( el . BaseName ) ) ;
1373
1373
}
1374
1374
}
1375
1375
@@ -1380,7 +1380,7 @@ public void CountByFieldOfPoco04Test()
1380
1380
using ( var transaction = session . OpenTransaction ( ) ) {
1381
1381
_ = session . Query . All < TestEntity > ( )
1382
1382
. Select ( e => new Poco { BaseName = e . Name } )
1383
- . Count ( el => el . BaseName . IsNullOrEmpty ( ) ) ;
1383
+ . Count ( el => string . IsNullOrEmpty ( el . BaseName ) ) ;
1384
1384
}
1385
1385
}
1386
1386
@@ -1391,7 +1391,7 @@ public void CountByFieldOfPoco05Test()
1391
1391
using ( var transaction = session . OpenTransaction ( ) ) {
1392
1392
_ = session . Query . All < TestEntity > ( )
1393
1393
. Select ( e => new Poco ( ) )
1394
- . Count ( el => el . Name . IsNullOrEmpty ( ) ) ;
1394
+ . Count ( el => string . IsNullOrEmpty ( el . Name ) ) ;
1395
1395
}
1396
1396
}
1397
1397
0 commit comments