simplic / yoktorm

Compiler-as-a-service supported .net ORM, aiming to be lightweight, dynamic and fast.
MIT License
2 stars 0 forks source link

Create pocos for representing a database structure #12

Open simplicbe opened 7 years ago

simplicbe commented 7 years ago

There must be a class structure which makes a database representable.

List:

  1. Table
    • Name
    • Scheme
    • User
    • Columns
  2. Column
    • Name
    • Type
    • Null
    • Is-PK
    • Default value
  3. Reference
    • SourceColumns
    • DestinationColumns
    • Name
  4. Procedure
    • Name
    • Scheme
    • User
    • Columns
    • Parameter-List
  5. Function
    • Name
    • Scheme
    • User
    • Return type
    • Parameter-List
  6. View
    • Name
    • Scheme
    • User
    • Columns