Beispiel #1
0
        public void ReturnSql()
        {
            IsNotEmpty isNotEmpty = new IsNotEmpty
            {
                //BodyText = "",
                Prepend  = "And Id",
                Property = "Ids"
            };
            string sql = isNotEmpty.BuildSql(new RequestContext
            {
            });

            Assert.NotNull(sql);
        }
        public void ReturnSql()
        {
            IsNotEmpty isNotEmpty = new IsNotEmpty
            {
                //BodyText = "",
                Prepend  = "And Id",
                Property = "Ids",
                In       = true
            };
            string sql = isNotEmpty.BuildSql(new Abstractions.RequestContext
            {
            }, "@");

            Assert.NotNull(sql);
        }