NLite.Data.Test.NorthwindExecutionTest.TestStringConcatExplicit3Args C# (CSharp) Method

TestStringConcatExplicit3Args() private method

private TestStringConcatExplicit3Args ( ) : void
return void
        public virtual void TestStringConcatExplicit3Args()
        {
            var list = db.Customers.Where(c => string.Concat(c.ContactName, "X", c.Country) == "Maria AndersXGermany").ToList();
            AssertValue(1, list.Count);
        }
NorthwindExecutionTest