Farseer.net轻量级开源框架 中级篇:数据绑定
上一篇:Farseer.net轻量级开源框架 中级篇: DbFactory数据工厂
下一篇:Farseer.net轻量级开源框架 中级篇: 自定义配置文件
这篇文章讲的内容,大家应该会比较感兴趣。讲述如何将自己从数据库获取的数据展现在表现层,当然这篇讲的主要是Asp.Net的服务器控件方面的数据绑定。
说到ListControl,大家可能会陌生,但说:DropDownList、CheckBoxList、RadioButtonList大家可能会就比较熟悉了,这些控件实质上是继承了ListControl类的。
当然,还有大家熟悉的Repeater控件(我比较倾向这个数据列表控件,主要是灵活)
基本上控件的绑定都是非常简单的,如下:
"控件的实例名称".Bind(........);
Bind方法是扩展方法,需要引用空间:FS.Extend;
在最早的讲述增删改查的演示教程中。已经有了Repeater、RadioButtonList的绑定例子,我们再次回顾下:
// 绑定 性别 枚举 到控件中
// 通过对枚举的 [Display(Name = "男士")] 设置来显示中文
// 对于DropDownList、CheckBoxList、RadioButtonList、Repeater 的绑定操作是完全一样的哦
// 当然不仅仅是绑定枚举、包括你的List<User> 都可以。对于实体的中文显示,默认是Caption字段
hlGenderType.Bind(typeof(Users.eumGenderType));
hl2GenderType.Bind(typeof(Users.eumGenderType)); // 数据分页、并绑定到Repeater中
// 这里的分页是真实的数据库先进行分页获取数据,然后再在Repeater中进行实现 上一页、下一页的操作显示
// rptList 是FS:Repeater控件 继承自原生的Repeater控件的基础上,实现上下页的菜单显示。
// ToList 传入rptList。实际是告诉ToList 我要从数据库获取第几页的数据,同时把数据库的Count总数,设置到Repeater中
rptList.Bind(Users.Data.ToList(rptList));
语法上的调用是非常方便的,当然这些都是Farseer.Net的初衷,快速开发!
有了这个开头,现在我们演示下不同的数据、不同的控件是如何绑定的。
/// <summary>
/// Eume绑定到WebControl
/// </summary>
/// <param name="control">要绑定的ddl</param>
/// <param name="eumType">枚举的Type</param>
/// <param name="defShowText">第一行要显示的文字</param>
/// <param name="defShowValue">第一行要显示的值</param>
/// <param name="selectedValue">默认选择值</param>
public static void Bind(this ListControl control, Type eumType, object selectedValue = null, string defShowText = null, object defShowValue = null)
/// <summary>
/// WinForm绑定
/// </summary>
/// <param name="control">控件</param>
/// <param name="eumType">枚举类型</param>
public static void Bind(this System.Windows.Forms.ListControl control, Type eumType)
/// <summary>
/// WinForm绑定
/// </summary>
/// <param name="control">控件</param>
/// <param name="eumType">枚举类型</param>
public static void Bind(this DataGridViewComboBoxColumn control, Type eumType)
/// <summary>
/// 绑定枚举
/// </summary>
/// <param name="rpt">Repeater</param>
/// <param name="eumType">枚举</param>
public static void Bind(this Repeater rpt, Type eumType)
主要是针对以上4种控件类型,实现了绑定。大家知道枚举元素的语法定义是 Name=Value
Name通常是英文的变量名称、Value是数字类型的值。但是并没有中文的显示的地方。那么回头看看我们的中文是放到哪的:
/// <summary>
/// 性别类型
/// </summary>
public enum eumGenderType
{
/// <summary>
/// 男士
/// </summary>
[Display(Name = "男士")]
Man = , /// <summary>
/// 女士
/// </summary>
[Display(Name = "女士")]
Woman
}
没错,跟实体的字段映射是一样的,也是:Display特性。那么在绑定的时候,框架会加载这个中文(这里也使用了缓存哦)
这样,我们在控件显示的时候,就会把这个值的中文显示出来:
我们在看看它的服务器控件又是如何的:
<asp:RadioButtonList ID="hlGenderType" runat="server" RepeatDirection="Horizontal"></asp:RadioButtonList>
它的HTML效果的:
<tr>
<td>
<input id="hlGenderType_0" type="radio" name="hlGenderType" value="0" checked="checked" /><label for="hlGenderType_0">男士</label></td>
<td>
<input id="hlGenderType_1" type="radio" name="hlGenderType" value="1" /><label for="hlGenderType_1">女士</label></td>
</tr>
.Net 后台
hlGenderType.Bind(typeof(Users.eumGenderType));
/// <summary>
/// string[]绑定到WebControl
/// </summary>
/// <param name="control">要绑定的ddl</param>
/// <param name="trueCaption">值为是的提示</param>
/// <param name="falseCaption">值为不是的提示</param>
/// <param name="NoSelectCaption">未选择的提示</param>
public static void Bind(this ListControl control, string trueCaption = "是", string falseCaption = "否", string NoSelectCaption = "")
/// <summary>
/// IEnumerable绑定到DataGridView
/// </summary>
/// <param name="dgv">DataGridView</param>
/// <param name="lst">List列表</param>
public static void Bind<T>(this DataGridView dgv, List<T> lst) /// <summary>
/// IEnumerable绑定到DataGridView
/// </summary>
/// <param name="dgv">DataGridView</param>
/// <param name="lst">List列表</param>
public static void Bind<T>(this DataGridView dgv, BindingList<T> lst, Action<object, ListChangedEventArgs> act = null) /// <summary>
/// 绑定到DropDownList
/// </summary>
/// <param name="ddl">要绑定的ddl控件</param>
/// <param name="lstInfo">要进行绑定的列表</param>
/// <param name="selectedValue">默认选则值</param>
/// <param name="RemoveID">不加载的节点(包括子节点)</param>
public static void Bind(this DropDownList ddl, List<ModelCateInfo> lstInfo, object selectedValue = null, int RemoveID = -) /// <summary>
/// IEnumerable绑定到Repeater
/// </summary>
/// <param name="rpt">Repeater</param>
/// <param name="lst">List列表</param>
public static void Bind(this Repeater rpt, IEnumerable lst) /// <summary>
/// IEnumerable绑定到Repeater
/// </summary>
/// <param name="rpt">QynRepeater</param>
/// <param name="recordCount">记录总数</param>
/// <param name="lst">IEnumerable</param>
public static void Bind(this UI.Repeater rpt, IEnumerable lst, int recordCount = -)
看下展示效果:
HTML:
<table class="auto-style1" style="width: 800px">
<tr>
<td>系统编号</td>
<td>名称</td>
<td>密码</td>
<td>性别</td>
<td>登陆次数</td>
<td>登陆IP</td>
<td>操作</td>
</tr>
<FS:Repeater ID="rptList" runat="server">
<ItemTemplate>
<tr>
<td><%# ((Users)Container.DataItem).ID%></td>
<td><%# ((Users)Container.DataItem).UserName%></td>
<td><%# ((Users)Container.DataItem).PassWord%></td>
<td><%# ((Users)Container.DataItem).GenderType.GetName()%></td>
<td><%# ((Users)Container.DataItem).LoginCount%></td>
<td><%# ((Users)Container.DataItem).LoginIP%></td>
<td><a href="?oper=update&ID=<%# ((Users)Container.DataItem).ID%>">修改</a>
<a href="?oper=del&ID=<%# ((Users)Container.DataItem).ID%>">删除</a>
</td>
</tr>
</ItemTemplate>
<PaginationHtml><tr class="tdbg" align="center" style="height: 28px;"><td colspan="12"><Pagination /></td></tr></PaginationHtml>
</FS:Repeater>
</table>
这里用到的是框架的FS:Repeater(加了分页功能)、系统原生的Repeater也是一样的效果。
再看看后台.net:
// 数据分页、并绑定到Repeater中
// 这里的分页是真实的数据库先进行分页获取数据,然后再在Repeater中进行实现 上一页、下一页的操作显示
// rptList 是FS:Repeater控件 继承自原生的Repeater控件的基础上,实现上下页的菜单显示。
// ToList 传入rptList。实际是告诉ToList 我要从数据库获取第几页的数据,同时把数据库的Count总数,设置到Repeater中
rptList.Bind(Users.Data.ToList(rptList));
Users.Data.ToList(rptList) 返回的是List<Users>类型。参数里把Repeater传了进去。是因为Repeater控件带了分页的属性,比如每页显示大小、总记录数。通过这种重载版本,就不需要再对ToList分页的时候,再次设置,直接调用Repeater的属性。
还是贴下代码吧,看看这个重载做了什么:
/// <summary>
/// 通用的分页方法(多条件)
/// </summary>
/// <param name="rpt">Repeater带分页控件</param>
/// <param name="db">可传入事务的db</param>
public List<TInfo> ToList(Repeater rpt, DbExecutor db = null)
{
int recordCount;
var lst = ToList(out recordCount, rpt.PageSize, rpt.PageIndex, db);
rpt.PageCount = recordCount; return lst;
}
实际上还是调用了ToList的分页重载版本。
对于DropDownList、RadioButtonList来说,其选中的值都是只有一个的。但是CheckBoxList是复选列表。即我们要对其进行赋值(选中)、或者获取已选中的值时。额外提供了一些扩展方法:
/// <summary>
/// 获取CheckBoxList中,选中后的枚举值
/// </summary>
/// <param name="control">CheckBoxList控件</param>
/// <param name="value">设置的值</param>
public static void SetValue(this CheckBoxList control, int value) /// <summary>
/// 获取CheckBoxList中,选中后的枚举值
/// </summary>
/// <param name="control">CheckBoxList控件</param>
public static int GetValue(this CheckBoxList control)
这个单独拿出来说。读者会奇怪,这里怎么是返回int?或者,传入的是int呢?
这里,我们用了位运算。关于权限这一块,有时候,我们会用枚举的位运算来存储权限值。好处是数据库只需要1个整型的字段就可以了。
var enumValue = ;
enumValue |= 选中的值(int类型)
"CheckBox控件".Selected = (val & value) == val;
// value 是数据库存的权限值
// val是CheckBox控件的值
// 进行与运算比较
下面是比较常见的List<T>值的赋值与获取,这个就是用List方式进行传入的,上面的枚举的位运算可能大家不常用。
/// <summary>
/// 获取ListBox的值
/// </summary>
/// <param name="control">ListControl控件</param>
public static List<T> GetValue<T>(this ListControl control) /// <summary>
/// 设置ListBox的值
/// </summary>
/// <param name="control">ListControl控件</param>
/// <param name="lst">要设置的值</param>
public static void SetValue<T>(this ListControl control, List<T> lst)
/// <summary>
/// 插入项
/// </summary>
/// <param name="control">control控件</param>
/// <param name="text">显示的名称</param>
/// <param name="value">保存的值</param>
/// <param name="index">插入的项索引</param>
public static void InsertItem(this ListControl control, object value, string text = "请选择", int index = ) /// <summary>
/// 选择项
/// </summary>
/// <param name="control">ListControl控件</param>
/// <param name="selectedValue">选择项</param>
public static void SelectedItems(this ListControl control, object selectedValue)
这个是对控件的插入新项、或者选择某一选的扩展方法。.net 原生的方法,如果在做选择的时候,这个项不存在,是会报异常的。而这个扩展则对这个进行了判断。
上一篇:Farseer.net轻量级开源框架 中级篇: DbFactory数据工厂
下一篇:Farseer.net轻量级开源框架 中级篇: 自定义配置文件
QQ群:116228666 (Farseer.net开源框架交流) 请注明:Farseer.Net
Farseer.Net是一款ORM框架 + 常用工具 + 扩展集合。
Farseer 意为:先知、预言家 通常在某些场合时,提供计谋、策略。也希望该框架能给大家提供最大化的便捷。
ORM:其英文全称是:Object(对象) Relational(关系) Mapping(映射)
Farseer.Net的目标是:快速上手、快速开发、简单方便。
new User { ID = , Name = "张三" }.Insert()
Farseer.net轻量级开源框架 中级篇:数据绑定的更多相关文章
- Farseer.net轻量级开源框架 中级篇:DbFactory数据工厂
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: 执行SQL语句 下一篇:Farseer.net轻量级开源框架 中级篇: 数据绑定 ...
- Farseer.net轻量级开源框架 中级篇:自定义配置文件
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: 数据绑定 下一篇:Farseer.net轻量级开源框架 中级篇: 动态数据库访问 ...
- Farseer.net轻量级开源框架 中级篇:Cookies、Session、Request
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: 探究ORM(Mapping) 下一篇:Farseer.net轻量级开源框架 中级篇 ...
- Farseer.net轻量级开源框架 中级篇:UrlRewriter 地址重写
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: Cookies.Session.Request 下一篇:Farseer.net轻量 ...
- Farseer.net轻量级开源框架 中级篇:常用的扩展方法
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: BasePage.BaseController.BaseHandler.BaseM ...
- Farseer.net轻量级开源框架 中级篇:BasePage、BaseController、BaseHandler、BaseMasterPage、BaseControls基类使用
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: UrlRewriter 地址重写 下一篇:Farseer.net轻量级开源框架 中 ...
- Farseer.net轻量级开源框架 中级篇:探究ORM(Mapping)
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: SQL执行报告 下一篇:Farseer.net轻量级开源框架 中级篇: Cooki ...
- Farseer.net轻量级开源框架 中级篇:SQL执行报告
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 中级篇: 数据库切换 下一篇:Farseer.net轻量级开源框架 中级篇: 探究ORM(M ...
- Farseer.net轻量级开源框架 中级篇:事务的使用
导航 目 录:Farseer.net轻量级开源框架 目录 上一篇:Farseer.net轻量级开源框架 入门篇: Where条件的终极使用 下一篇:Farseer.net轻量级开源框架 中级篇: ...
随机推荐
- 重置网络命令win7
开始→运行→输入:CMD 点击确定(或按回车键),打开命令提示符窗口. 在命令提示符中输入:netsh winsock reset (按回车键执行命令) 稍后,会有成功的提示:成功地重置Winsock ...
- 《Java设计模式》之接口模式
-----------模式是思想的体现,而非详细的实现. 抽象的讲,类的接口是类同意其它类对象訪问的方法与字段集.接口通常代表一种承诺,即方法须要实现接口方法名表示的操作,遵循代码凝视和其它文档说明. ...
- 2011 ACM-ICPC 成都赛区A题 Alice and Bob (博弈动规)
题目大意: 有K堆石子,每堆有Ki个.两人的操作能够是: 1 从某一堆拿走一个 假设该堆在此之后没有石子了.就消失 2 合并两个堆 求是否 ...
- C# .NET如何定义图片按钮
先添加一个按钮,然后修改Image或者BackgroundImage显然不好,我想要按钮透明,就不要放在按钮的方框里,而且鼠标滑过和鼠标点击最好都是我自定义. 我们拉一个PictureBox,然后 ...
- android PercentRelativeLayout 支持百分比来设置控件的宽高
Android 最终官方支持按百分比来设置控件的宽高了. 我们先来看看效果: 看一下布局: PercentRelativeLayout <android.support.percen ...
- Akka并发编程——第五节:Actor模型(四)
本节主要内容: 1. 停止Actor 1. 停止Actor (1)通过ActorSystem.shutdown方法停止全部 Actor的执行 /* *停止Actor:ActorSystem.shutd ...
- 【bzoj4034】[HAOI2015]T2
siz[v]表示以v为根的子树的节点数 top[v]表示v所在的重链的顶端节点 fa[v]表示v的父亲 pos[v]表示v的父边标号 mx[v]表示v的子树中边的标号最大的那条边 参考:http:// ...
- Spring 的Bean管理的常用注解
属性注入的注解(使用注解注入的方式,可以不用提供set方法) @Value 用于注入普通类型 @Autowired 自动装配 :默认按类型进行装配 按名称注入 @Qualifier 强制使用名称注入 ...
- 【Dairy】2016.10.23 观火&中彩记
...................... 就第一条可以! 观火10分钟,长郡附近老房子起火...
- Code First:Fluent API
DbContext类有一个OnModelCreating方法,可以在这里配置模型,该方法接收一个类型为DbModelBuilder的建造者,本文介绍的为Data Anotation的等价方法,这些代码 ...