文件名称:dso:基于deno_mysql的Deno简单Orm库
文件大小:25KB
文件格式:ZIP
更新时间:2024-05-23 01:05:04
TypeScript
Deno Simple Orm dso是基于的简单ORM库 例子 import { BaseModel , Defaults , dso , Field , FieldType , CharsetType , Index , IndexType , Join , Model , Where } from "https://deno.land/x/dso@v1.0.0/mod.ts" ; // Define a database model @ Model ( "users" ) class UserModel extends BaseModel { // Character set for whole table. UTF-8 is default and is not necessary to define. charset : Ch
【文件预览】:
dso-master
----.gitignore(49B)
----src()
--------charset.ts(2KB)
--------Reflect.ts(72KB)
--------dso.ts(1KB)
--------index.ts(693B)
--------model.ts(7KB)
--------util.ts(281B)
--------sync.ts(3KB)
--------transaction.ts(589B)
--------field.ts(1019B)
----.travis.yml(214B)
----LICENSE(1KB)
----tsconfig.json(176B)
----mod.ts(304B)
----docker-compose.yml(175B)
----.github()
--------workflows()
----deps.ts(357B)
----test.ts(732B)
----README.md(9KB)
----util.ts(281B)
----test()
--------model.ts(6KB)