There was an error while loading. Please reload this page.
1 parent 9ab8192 commit 3a33b5bCopy full SHA for 3a33b5b
1 file changed
test/System.Linq.Dynamic.Core.Tests/EntitiesTests.In.cs
@@ -21,7 +21,7 @@ public void Entities_Where_In_And()
21
// Arrange
22
var expected = _context.Blogs.Include(b => b.Posts)
23
.Where(b =>
24
- new[] { 1000, 1001, 1002 }.Contains(b.BlogId) && new[] { "Blog1", "Blog2" }.Contains(b.Name) && b.Name.Contains('o') && b.Name.Contains("g")
+ new[] { 1000, 1001, 1002 }.Contains(b.BlogId) && new[] { "Blog1", "Blog2" }.Contains(b.Name) && b.Name.Contains('o'.ToString()) && b.Name.Contains("g")
25
)
26
.ToArray();
27
0 commit comments