ColumnProvider.IsCustomProperty 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示列是否为模型的数据上下文之外的其他属性。
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
属性值
如果列是模型的数据上下文之外的其他属性,则为 true
;否则为 false
。
注解
不在数据上下文中的列通常来自视图或计算属性。 属性的值 IsCustomProperty 可用于确定是否支持排序等列操作。 例如, System.Linq.IQueryable true
IsCustomProperty 由于数据库中不存在列,因此,数据模型接口的实现将不支持对为属性返回的属性进行排序。