Ejemplo n.º 1
0
        public void DeleteQuery()
        {
            IProvider provider    = new SqlServerProvider();
            string    commandText = provider.DeleteQuery("Product");

            Assert.AreEqual(commandText, "DELETE FROM [Product] WHERE [Product].[Id] = @Id");
        }