C# ORM 库 Kerosene ORM

码农软件 · 软件分类 · ORM/持久层框架 · 2019-09-23 21:58:15

软件介绍

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

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

Beginning PHP and MySQL 5

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

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具