MetaFunction.IsComposable 属性

定义

获取一个值,该值指示是否可在查询内编写函数。Gets whether the function can be composed within a query.

public:
 abstract property bool IsComposable { bool get(); };
public abstract bool IsComposable { get; }
member this.IsComposable : bool
Public MustOverride ReadOnly Property IsComposable As Boolean

属性值

Boolean

如果可在查询内编写函数,则为 truetrue if the function can be composed within a query.

注解

存储过程不能在查询中撰写。A stored procedure cannot be composed within a query. 表示存储过程的方法返回 falseMethods that represent stored procedures return false.

适用于