FunctionValue Constructor (UserDefinedFunction, Argument[])

Initializes a new instance of the FunctionValue class with a user-defined function and the function parameters.

命名空间: Microsoft.SqlServer.NotificationServices.Rules
程序集: Microsoft.SqlServer.NotificationServices.Rules (in microsoft.sqlserver.notificationservices.rules.dll)

语法

声明
Public Sub New ( _
    userDefinedFunction As UserDefinedFunction, _
    ParamArray parameters As Argument() _
)
public FunctionValue (
    UserDefinedFunction userDefinedFunction,
    params Argument[] parameters
)
public:
FunctionValue (
    UserDefinedFunction^ userDefinedFunction, 
    ... array<Argument^>^ parameters
)
public FunctionValue (
    UserDefinedFunction userDefinedFunction, 
    Argument[] parameters
)
public function FunctionValue (
    userDefinedFunction : UserDefinedFunction, 
    ... parameters : Argument[]
)

参数

  • parameters
    Zero or more Argument objects that define the parameters for the user-defined function.

备注

The user-defined function must have a scalar return type.

If you specify zero parameters, you must specify the function using the UserDefinedFunction property and you must specify the parameters for the function using the Parameters property.

示例

The following example shows the definition of a user-defined function, and then uses this function to evaluate events:

// Subscription based on the following function definition:

/*
create function SoundexMatch(@x nvarchar(max), @y nvarchar(max))
returns bit
as
begin
    if soundex(@x) = soundex(@y)
        return 1

    return 0
end
 * */

// Create subscription and define basic properties.
s = new Subscription(nsApplication, subscriptionClassName);
s.SubscriberId = "Richard";
s.Enabled = true;
s.RuleName = "InventoryTrackerRule";
s.SetFieldValue("DeviceName", "myDevice");
s.SetFieldValue("SubscriberLocale", "en-us");

// Define a condition that uses the function to evaluate
// if the condition is true.
s.Condition = new BooleanLeafCondition(new FunctionValue(
    db.UserDefinedFunctions["SoundexMatch", "dbo"],
    new FieldValue("ProductName"),
    "Rood-250 Black, 48"));

// Add subscription.
s.Add();

平台

开发平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

目标平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

请参阅

参考

FunctionValue Class
FunctionValue Members
Microsoft.SqlServer.NotificationServices.Rules Namespace

其他资源

用户定义函数(数据库引擎)