EasyDb.NET

码农软件 · 软件分类 · ORM/持久层框架 · 2019-09-24 08:42:01

软件介绍

EasyDb.NET 是一个 .NET 的非常轻量级的数据库操作助手类。内部由 Dapper 驱动。

示例代码:

IConnectionFactory factory;

// build factory with given DbProviderFactory and Dialect.
factory = ConnectionFactoryBuilder.NewBuilder(
  System.Data.SQLite.SQLiteFactory.Instance,
  "Data Source=test.db;Pooling=true;FailIfMissing=false",
  "SQLiteFactory",
  new SQLiteDialect()
).Build();

// or build from strings
factory = ConnectionFactoryBuilder.NewBuilder(
  "mysql.data",
  "Server=127.0.0.1;Uid=root;Pwd=asdf;Database=sample;",
  "MySQLFactory",
  "LX.EasyDb.Dialects.MySQLDialect"
).Build()

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

Creative Selection

Creative Selection

Ken Kocienda / St. Martin's Press / 2018-9-4 / USD 28.99

Hundreds of millions of people use Apple products every day; several thousand work on Apple's campus in Cupertino, California; but only a handful sit at the drawing board. Creative Selection recounts ......一起来看看 《Creative Selection》 这本书的介绍吧!

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

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具