Esempio n. 1
0
        public void ReturnSql()
        {
            IsGreaterThan tag = new IsGreaterThan
            {
                //BodyText = "",
                Prepend      = "And Id",
                Property     = "Status",
                CompareValue = "0",
            };
            string sql = tag.BuildSql(new RequestContext
            {
                Request = new { Status = OrderStatus.Done }
            });

            Assert.NotNull(sql);
        }