imrove README

This commit is contained in:
Philipp Kunz 2016-09-12 23:48:58 +02:00
parent ce1dceb60c
commit 78bdb6760e

View File

@ -19,7 +19,7 @@ Document | smartdata.DbDoc
### class Db ### class Db
represents a Database. Naturally it has .connect() etc. methods on it. represents a Database. Naturally it has .connect() etc. methods on it.
Since it is a class you can have multiple DBs defined. Since it is a class you can have multiple DBs defined.
```TypeScript ```typescript
import * as smartdata from 'smartdata' import * as smartdata from 'smartdata'
let myDb1 = new smartdata.Db('someConnectionUrl') let myDb1 = new smartdata.Db('someConnectionUrl')
@ -34,7 +34,7 @@ represents a collection of objects.
A collection is defined by the object class (that is extending smartdata.dbdoc) it respresents A collection is defined by the object class (that is extending smartdata.dbdoc) it respresents
So to get to get access to a specific collection you document So to get to get access to a specific collection you document
``` ```typescript
class myObject extends DbDoc { class myObject extends DbDoc {
property1:string property1:string
property2:number property2:number