File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -476,7 +476,7 @@ public async Task QueryAsync()
476
476
{
477
477
await ( s . CreateQuery ( "from foo in class Foo where lower( foo.TheFoo.String ) = 'foo'" ) . ListAsync ( ) ) ;
478
478
await ( s . CreateQuery ( "from foo in class Foo where lower( (foo.TheFoo.String || 'foo') || 'bar' ) = 'foo'" ) . ListAsync ( ) ) ;
479
- await ( s . CreateQuery ( "from foo in class Foo where repeat( (foo.TheFoo.STring || 'foo') || 'bar', 2 ) = 'foo'" ) . ListAsync ( ) ) ;
479
+ await ( s . CreateQuery ( "from foo in class Foo where repeat( (foo.TheFoo.String || 'foo') || 'bar', 2 ) = 'foo'" ) . ListAsync ( ) ) ;
480
480
await ( s . CreateQuery (
481
481
"From foo in class Bar where foo.TheFoo.Integer is not null and repeat( (foo.TheFoo.String || 'foo') || 'bar', (5+5)/2 ) = 'foo'" )
482
482
. ListAsync ( ) ) ;
Original file line number Diff line number Diff line change @@ -464,7 +464,7 @@ public void Query()
464
464
{
465
465
s . CreateQuery ( "from foo in class Foo where lower( foo.TheFoo.String ) = 'foo'" ) . List ( ) ;
466
466
s . CreateQuery ( "from foo in class Foo where lower( (foo.TheFoo.String || 'foo') || 'bar' ) = 'foo'" ) . List ( ) ;
467
- s . CreateQuery ( "from foo in class Foo where repeat( (foo.TheFoo.STring || 'foo') || 'bar', 2 ) = 'foo'" ) . List ( ) ;
467
+ s . CreateQuery ( "from foo in class Foo where repeat( (foo.TheFoo.String || 'foo') || 'bar', 2 ) = 'foo'" ) . List ( ) ;
468
468
s . CreateQuery (
469
469
"From foo in class Bar where foo.TheFoo.Integer is not null and repeat( (foo.TheFoo.String || 'foo') || 'bar', (5+5)/2 ) = 'foo'" )
470
470
. List ( ) ;
You can’t perform that action at this time.
0 commit comments