在 StreamInsight 2.1 中,我尝试使用用户定义的函数来扩展功能。目前,所有工作都在 IDE 中。
流处理中的段
var foo = from ev in source
select new MyDataType
{
NewRate = Parse(ev.NewValue, "New rate")
};
public static string Parse(string fromString, string pattern)
{
return "Hello";
}
这很好,一切运行正常,但它不会让我使用 f11 或断点进入 UDF。有没有一种简单的方法来查看 UDF 的阴谋?