Overload List
| Name | Description | |
|---|---|---|
| GetProducts(IiMISUser, String, String, array<SqlParameter>[]()[]) |
Retrieves a collection of Products from the database using the supplied SQL FROM and WHERE criteria and parameters.
The starting SQL is: SELECT Product.* FROM Product {0} WHERE 1 = 1 {1}. So any additional FROM criteria should look something like:
", Product_Function" or "INNER JOIN Product_Function ON Product.Product_Code = Product_Function.Product_Code" etc. Any additional
WHERE criteria should start with AND, like: "AND Product.Product_Code = Product_Function.Product_Code" etc.
| |
| GetProducts(DataServer, IiMISUser, String, String, array<SqlParameter>[]()[]) |
Retrieves a collection of Products from the database using the supplied SQL FROM and WHERE criteria and parameters.
The starting SQL is: SELECT Product.* FROM Product {0} WHERE 1 = 1 {1}. So any additional FROM criteria should look something like:
", Product_Function" or "INNER JOIN Product_Function ON Product.Product_Code = Product_Function.Product_Code" etc. Any additional
WHERE criteria should start with AND, like: "AND Product.Product_Code = Product_Function.Product_Code" etc.
|