BindingSource.IsGreedy 属性

定义

获取一个值,该值指示源是否贪婪。 贪婪源将在单个操作中绑定模型,并且不会将模型分解为子属性。

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

属性值

注解

对于基于 的源, IValueProvider将 设置为 IsGreedyfalse 最贴近地描述行为。 此值在默认模型绑定器内用于确定是否尝试绑定模型的属性。

true对于大多数自定义IModelBinder实现,设置为 IsGreedy

如果源表示一个 IModelBinder ,它将以递归方式遍历模型的属性并使用 单独 IValueProvider绑定它们,则将 设置为 IsGreedytrue

适用于