- 授权协议: CPOL
- 开发语言: PHP
- 操作系统: Windows
- 软件首页: http://www.codeproject.com/Articles/791193/MercuryORM-Simple-Entity-Framework
软件介绍
MercuryORM 是一个轻量级的 ORM 框架,基于 Entity Framework 开发。
示例代码:
$user = new Models\User();
$user->setFirstName('John');
$user->setLastName('Smith');
$user->setEmail('j.smith@mail.com');
$post = new Models\Post();
$post->setTitle('My first post');
$post->setBody('This is my first blog post');
$post->setAuthor($user);
$blogContext = new BlogContext();
$blogContext->getUsers()->add($user);
$blogContext->getPosts()->add($post);
$blogContext->saveChanges();
HTTP Essentials
Stephen A. Thomas、Stephen Thomas / Wiley / 2001-03-08 / USD 34.99
The first complete reference guide to the essential Web protocol As applications and services converge and Web technologies not only assume HTTP but require developers to manipulate it, it is be......一起来看看 《HTTP Essentials》 这本书的介绍吧!
