https://github.com/snerble/linqtosql
Assignment for Software Engineering minor
https://github.com/snerble/linqtosql
Last synced: about 2 months ago
JSON representation
Assignment for Software Engineering minor
- Host: GitHub
- URL: https://github.com/snerble/linqtosql
- Owner: snerble
- Created: 2022-03-09T23:56:02.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-01T10:56:43.000Z (almost 3 years ago)
- Last Synced: 2025-01-20T21:44:47.555Z (3 months ago)
- Language: C#
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LinqToSQL
Assignment for Software Engineering minor# Roadmap
- [x] `SELECT`
- [x] `WHERE`
- [ ] `INCLUDE`
- [x] `ORDERBY`
- [x] `GROUPBY`## Optional stuff to make it useful
**Note:** These features probably won't be implemented but I still listed them here just in case I'm ever up for a challenge. Not that I'll be using this in favor of Entity Framework mind you, but I've had fun with this project so far so I might as well turn it into something practical for fun.
- [ ] `INSERT`
- [ ] `UPDATE`
- [ ] `DELETE`
- [ ] Creating tables
- [ ] Database model snapshot for optimized performance
- [ ] Basic migrations system