About 21,100,000 results
Open links in new tab
  1. What's the difference between an argument and a parameter?

    Oct 1, 2008 · But a parameter accepts an argument, so it is an argument that is accepted, not a parameter. And if anything, an argument is given in a call to a parameter (or at least, some …

  2. How to pass a variable into a YAML template parameter and use it …

    Feb 15, 2025 · If you are passing a variable into a template parameter with the intention of using it as part of another runtime expression, the easiest method is to copy the parameter to a variable.

  3. How to pass variable as a parameter in Execute SQL Task SSIS?

    Sep 30, 2011 · Click the parameter mapping in the left column and add each paramter from your stored proc and map it to your SSIS variable: Now when this task runs it will pass the SSIS …

  4. powershell mandatory parameter with default value shown

    Oct 5, 2016 · I am looking for a way to have an PowerShell script ask for an parameter which needs to be mandatory, but shown with an default value, e.g.: .\\psscript Supply values for the …

  5. How to pass a switch parameter to another PowerShell script?

    Jun 24, 2016 · If you change the passed parameter in the child function, the corresponding variable in the parent won't be affected.) A different scenario is presented in the case of …

  6. angular - How to pass a parameter to routerLink that is …

    How to pass a parameter to routerLink that is somewhere inside the URL? Asked 9 years, 4 months ago Modified 3 years, 5 months ago Viewed 413k times

  7. c# - RedirectToAction with parameter - Stack Overflow

    Feb 13, 2018 · 31 If your parameter happens to be a complex object, this solves the problem. The key is the RouteValueDictionary constructor. return RedirectToAction("Action", new …

  8. PowerShell mandatory parameter depends on another parameter

    The parameter "PropertyType" must be mandatory, but only if "CreateNewChild" flag has been set. The question is, how do I make a parameter mandatory, but only if another parameter has …

  9. Procedure expects parameter which was not supplied

    Dec 15, 2008 · Procedure or function 'ColumnSeek' expects parameter '@template', which was not supplied. This is happening when I call a Stored Procedure with a parameter through .net's …

  10. Alter a SQL server function to accept new optional parameter

    Oct 4, 2012 · From CREATE FUNCTION: When a parameter of the function has a default value, the keyword DEFAULT must be specified when the function is called to retrieve the default …