From 5c19502d266b39daf051ce89fda892bc44afd60a Mon Sep 17 00:00:00 2001 From: gitbook-bot Date: Fri, 23 Aug 2024 13:49:55 +0000 Subject: [PATCH] GITBOOK-22: No subject --- docs/README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/README.md b/docs/README.md index 3ad26b1..2f1dc4f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -8,10 +8,10 @@ CQL is a powerful library designed to simplify and enhance the management and ex ## Features -- **Query Builder**: Programmatically create complex SQL queries. -- **Insert, Update, Delete Operations**: Perform CRUD operations with ease. -- **Repository Pattern**: Manage your data more effectively using `Cql::Repository(T)`. -- **Active Record Pattern**: Work with your data models using `Cql::Record(T)`. +* **Query Builder**: Programmatically create complex SQL queries. +* **Insert, Update, Delete Operations**: Perform CRUD operations with ease. +* **Repository Pattern**: Manage your data more effectively using `Cql::Repository(T)`. +* **Active Record Pattern**: Work with your data models using `Cql::Record(T)`. ## Installation @@ -140,7 +140,6 @@ user_repository.update(1, name: "Jane Smith") Work with your data using the Active Record pattern: ```crystal -A struct Actor < Cql::Record(Actor, Int64) db_context AcmeDB2, :actors