- 授权协议: 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);
