Aspectacular.Test.LinqTests.TestAnonymousQuery C# (CSharp) 메소드

TestAnonymousQuery() 개인적인 메소드

private TestAnonymousQuery ( ) : void
리턴 void
        public void TestAnonymousQuery()
        {
            List<object> countryStateBityRecords = AwDal.List(db => db.QueryUserCoutryStateCity(CustomerIdWithManyAddresses));

            foreach(object record in countryStateBityRecords)
                this.TestContext.WriteLine("{0}", record);
        }