- 授权协议: 未知
- 开发语言: C#
- 操作系统: Windows
- 软件首页: https://github.com/schotime/NPoco
- 软件文档: https://github.com/schotime/NPoco/wiki
软件介绍
NPoco 是一个简单的微ORM框架,用于映射POCO 对象的查询结果,基于PetaPoco 。
快速入门:
public class User
{
public int UserId { get;set; }
public string Email { get;set; }
}
IDatabase db = new Database("connStringName");
List<User> users = db.Fetch<User>("select userId, email from users");
Twenty Lectures on Algorithmic Game Theory
Tim Roughgarden / Cambridge University Press / 2016-8-31 / USD 34.99
Computer science and economics have engaged in a lively interaction over the past fifteen years, resulting in the new field of algorithmic game theory. Many problems that are central to modern compute......一起来看看 《Twenty Lectures on Algorithmic Game Theory》 这本书的介绍吧!
