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.
- Host: GitHub
- URL: https://github.com/klinki/tsorm
- Owner: klinki
- License: mit
- Created: 2016-05-15T14:02:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-15T16:32:14.000Z (about 9 years ago)
- Last Synced: 2025-03-12T18:30:51.163Z (3 months ago)
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
}
```