- 授权协议: 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);
}
}
An Introduction to the Analysis of Algorithms
Robert Sedgewick、Philippe Flajolet / Addison-Wesley Professional / 1995-12-10 / CAD 67.99
This book is a thorough overview of the primary techniques and models used in the mathematical analysis of algorithms. The first half of the book draws upon classical mathematical material from discre......一起来看看 《An Introduction to the Analysis of Algorithms》 这本书的介绍吧!
