-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the RedOrb wiki!
It can be installed from Nuget.
PM> NuGet\Install-Package RedOrb
The model is almost identical to the table. First, let's define the model.
https://github.com/mk3008/RedOrb/wiki/Model
Once you have created a model class, convert it to a definition class and register it with RedOrb.Also, set the DBMS-dependent environment settings.
https://github.com/mk3008/RedOrb/wiki/Configuration
RedOrb can issue create table queries.
https://github.com/mk3008/RedOrb/wiki/CreateTable
Let's register a model in the database using RedOrb.
Let's read the model registered in the database.
There are various reading methods. In addition to primary key searches, unique key searches, and custom searches, you can also control table joins.
https://github.com/mk3008/RedOrb/wiki/Load
You can fill in child elements later.
Let's edit the model and write it back to the database.
Let's delete it from the database.