CRUDProxy.ProxyConfiguration.InputFormProperties Property

指示编辑页的表单中要显示的属性。

Definition

Namespace: QuickAdmin.RCL
Assembly: QuickAdmin.Net (in QuickAdmin.Net.dll) Version: 1.0.122
C#
public string InputFormProperties { get; set; }

Property Value

string
逗号隔开的属性名称字符串,不区分大小写。名称必须是 entityProperties 中含有的属性名称。

Remarks

与代理的 PropertiesForInputForm 属性对应。属性可以是除过自定义属性的,类型为值类型或 string 类型的属性。
要显示全部可显示的属性,可设置为 "*"
要显示除过某些属性的其它属性,可设置为 "*-" 打头的字符串,例如 "*-Code, Memo" 表示除过 "Code""Memo" 的所有可显示的属性。

See Also