SRF之数据字典

时间:2023-03-08 17:11:19
框架提供数据字典的配置和显示的功能
字典以编码作为标识,用varchar(50)类型保存字典的编码。
字典的用法
1、在代码里边需要查询字典信息的 可用 Components.DataDictionary.DataDictionaryHelper的函数
2、某个对象的属性用数据字典表示的在该属性上添加Dict特性,如下
public class Post
{
[SRF.Components.DataDictionary.Dict("CommentStatus")]
public string CommentStatus { get; set; }
}
在页面上 UI提供字典下拉框和显示的HtmlHelper:DictDropDownListFor和DictTextFor,如
@Html.DictDropDownListFor(m=>m.CommentStatus)
@Html.DictTextFor(m=>m.CommentStatus)