Vend-ng / Vend.Repo

0 stars 0 forks source link

Database - Design #1

Open TheMoakMan opened 4 years ago

TheMoakMan commented 4 years ago

This step is to design a relational database (mainly schema) for the project. The design needs to contain at least the following information plus some added attributes

UPDATE : Please Read the Comments of this Post.

Tables

jacquesaronius commented 4 years ago

Let's just build an ORM in EFCore. That way we can puke out the database on whatever platform we choose.

TheMoakMan commented 4 years ago

Okay, I need someone to look into this EFCore and the Object Relational Mapping (ORM). From what I understand we can create objects and the tool EFCore will create a database design based on this.

jacquesaronius commented 4 years ago

EFCore is just spicy SQL Server.

TheMoakMan commented 4 years ago

What about the SQL Lite for the Raspberry Pi itself.

TheMoakMan commented 4 years ago

What language are we going to write the software for the Pi? We could do it in Python probably

jacquesaronius commented 4 years ago

EF Core will generate a SQLite schema as well

itotallyrock commented 4 years ago

This will be switching to typeorm to better fit with the nodejs backend. Similar in style to entity framework.