ColumnProvider.IsCustomProperty 属性

定义

获取或设置一个值,该值指示列是否为模型的数据上下文之外的其他属性。

public:  virtual property bool IsCustomProperty {  public:
bool get(); protected:
 void set(bool value); };
public virtual bool IsCustomProperty { get; protected set; }
member this.IsCustomProperty : bool with get, set
Public Overridable Property IsCustomProperty As Boolean

属性值

Boolean

如果列是模型的数据上下文之外的其他属性,则为 true;否则为 false

注解

不在数据上下文中的列通常来自视图或计算属性。 属性的值 IsCustomProperty 可用于确定是否支持排序等列操作。 例如, System.Linq.IQueryable true IsCustomProperty 由于数据库中不存在列,因此,数据模型接口的实现将不支持对为属性返回的属性进行排序。

适用于