- 授权协议: MIT
- 开发语言: C#
- 操作系统: Windows
- 软件首页: https://keroseneorm.codeplex.com/
- 软件文档: http://www.codeproject.com/Articles/117666/Kerosene-ORM-a-dynamic-configuration-less-and-self
软件介绍
Kerosene 是一个自适应和无配置的 C# ORM 库,基于 C# dynamics 的 SQL 语法,支持 WCF、Entity Framework 的 POCO 对象。
示例代码:
using Kerosene.ORM.Core;
using Kerosene.ORM.Direct;
var link = LinkFactory.Create();
var cmd = link
.From(x => x.Employees)
.Where(x => x.LastName >= "P");
foreach(var rec in cmd) Console.WriteLine("\n- Employee: {0}", rec);
Beginning PHP and MySQL 5
W. Jason Gilmore / Apress / 2006-01-23 / USD 44.99
Beginning PHP and MySQL 5: From Novice to Professional, Second Edition offers comprehensive information about two of the most prominent open source technologies on the planet: the PHP scripting langua......一起来看看 《Beginning PHP and MySQL 5》 这本书的介绍吧!
