Skip to content

Instantly share code, notes, and snippets.

@strepicor
strepicor / Customization.epicor
Last active April 2, 2024 02:19
Epicor Customization - Retrieve Data from a BAQ
// Add a reference to "Ice.Contracts.Bo.DynamicQuery"
public struct BaqParam
{
public BaqParam(string paramName, string paramType, string paramValue)
{
this.ParamName = paramName;
this.ParamType = paramType;
this.ParamValue = paramValue;