SouthWind.Product.All C# (CSharp) Method

All() public static method

public static All ( string connectionString, string providerName ) : IQueryable
connectionString string
providerName string
return IQueryable
        public static IQueryable<Product> All(string connectionString, string providerName) {
            return GetRepo(connectionString,providerName).GetAll();
        }
        public static IQueryable<Product> All() {

Same methods

Product::All ( ) : IQueryable