An open API service indexing awesome lists of open source software.

https://github.com/klinki/tsorm

TypeScript ORM with annotations support. Highly inspired by Doctrine 2.
https://github.com/klinki/tsorm

Last synced: 3 days ago
JSON representation

TypeScript ORM with annotations support. Highly inspired by Doctrine 2.

Awesome Lists containing this project

README

        

# TSORM - TypeScript ORM

TSORM is TypeScript ORM library with annotations support. It is highly inspired by Doctrine 2 framework for PHP and Hibernate framework for Java.

```typescript
@Entity()
class Entity {
@Id()
@Column()
protected $id;

@Column()
protected $name;
}
```