Skip to content
#

orm-framework

Here are 293 public repositories matching this topic...

nim-gatabase
Newrite
Newrite commented Oct 9, 2021

First of all sorry for my english

Repro

import db_sqlite
import gatabase
include gatabase/sugar

let db = open("data.sqlite3", "", "", "")
        
let myTable = createTable "kitten": [
  "age"    := 1,
  "sex"    := 'f',
  "name"   := "unnamed",
  "rank"   := 3.14,
  "weight" := int,
  "color"  := char,
  "owner"  := string,
  "food"   := float,
]

echo myTable.string
help wanted good first issue

An alternative to ORM's such as Entity Framework, offers light-weight database mapping to your existing CLR objects. Visit "Design Goals" on GitHub to see more rationale and guidance.

  • Updated May 15, 2022
  • C#

Improve this page

Add a description, image, and links to the orm-framework topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the orm-framework topic, visit your repo's landing page and select "manage topics."

Learn more