示例#1
0
        public void ConcatenationTest()
        {
            QueryMethods.ConcatPrimitive(new AdventureWorks());
#if NETFX
            QueryMethods.ConcatEntity(new AdventureWorks());
#else
            try
            {
                QueryMethods.ConcatEntity(new AdventureWorks());
                Assert.Fail();
            }
            catch (ArgumentException exception)
            {
                Trace.WriteLine(exception);
            }
#endif
        }
示例#2
0
 public void ConcatenationTest()
 {
     QueryMethods.ConcatPrimitive(new AdventureWorks());
     QueryMethods.ConcatEntity(new AdventureWorks());
 }