Ejemplo n.º 1
0
 public void From()
 {
     string sql = new SQLQuery<Product>()
                 .Build()
                 .SQL;
     Assert.IsTrue(sql.Contains("FROM [Product]"));
 }