Fluent nHibernate

码农软件 · 软件分类 · ORM/持久层框架 · 2019-09-24 21:12:14

软件介绍

对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);
  }
}

本文地址:https://codercto.com/soft/d/15329.html

An Introduction to the Analysis of Algorithms

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》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具