- 授权协议: GPL
- 开发语言: C#
- 操作系统: Windows
- 软件首页: http://www.openthinking.cn
- 软件文档: https://git.oschina.net/bouyeijiang/SqlProvider
软件介绍
对象映射生成sql语句,将sql的拼接转换为对象拼接输出sql语句,减少拼接sql的麻烦和容易出错,例子:
string select = Provider.Singleton.Select<Info>()
.From<Info>()
.Where(new Info() { name="bouyei",age=12 })
.SqlString;
select结果:"Select name,age From Info Where name='bouyei' And age=12 "
string insert = Provider.Singleton.InsertInto<Info>("tablename",
new Info() { name = "newbie", age = 13 })
.SqlString;
insert结果:"Insert Into Info (name,age) Values('newbie',13)"
string update = Provider.Singleton.Update<Info>()
.Set<Info>(new Info() { name = "openthinking.cn", age = 11 })
.Where<Info>(new Info() {name="bouyei",age=2 })
.SqlString;
update结果:"Update Info Set name='openthinking.cn',age=11 Where name='bouyei' And age=2 "
string delete = Provider.Singleton.Delete<Info>()
.From<Info>()
.Where<Info>(x => x.name == "bouyei")
.SqlString;
delete 结果:"Delete From Info Where (name='bouyei') "
Haskell函数式编程基础
Simon Thompson / 科学出版社 / 2013-7-1 / 129.00
《Haskell函数式编程基础(第3版)》是一本非常优秀的Haskell函数式程序设计的入门书,各章依次介绍函数式程序设计的基本概念、编译器和解释器、函数的各种定义方式、简单程序的构造、多态和高阶函数、诸如数组和列表的结构化数据、列表上的原始递归和推理、输入输出的控制处理、类型分类与检测方法、代数数据类型、抽象数据类型、惰性计算等内容。书中包含大量的实例和习题,注重程序测试、程序证明和问题求解,易......一起来看看 《Haskell函数式编程基础》 这本书的介绍吧!
