- 授权协议: BSD
- 开发语言: C#
- 操作系统: Windows
- 软件首页: http://www.fluentnhibernate.org/
- 软件文档: https://github.com/jagregory/fluent-nhibernate/wiki
- 官方下载: https://github.com/jagregory/fluent-nhibernate/archive/master.zip
软件介绍
对nHibernate的封装。
特点
* 无XML映射文件 (*.hdm.xml)
* 流畅接口
* 流程C#配置nHibernate
* 流畅C#映射,甚至自动映射。
* 强类新映射,减少类新匹配错误
* 数据库的重构,变得更容易
Fluent nHibernate的取代C#文件
public class CatMap : ClassMap
{
public CatMap()
{
Id(x => x.Id);
Map(x => x.Name)
.Length(16)
.Not.Nullable();
Map(x => x.Sex);
References(x => x.Mate);
HasMany(x => x.Kittens);
}
}
Foundation Web Standards
Jonathan Lane、Steve Smith / Friends of ED / 21st July 2008 / $34.99
Foundation Web Standards explores the process of constructing a web site from start to finish. There is more to the process than just knowing HTML! Designers and developers must follow a proper proces......一起来看看 《Foundation Web Standards》 这本书的介绍吧!
