prax-orm 0.6.5

A next-generation, type-safe ORM for Rust inspired by Prisma
Documentation
<article class="max-w-4xl mx-auto px-6 py-12">
  <header class="mb-12">
    <h1 class="text-4xl font-bold mb-4">Aggregations</h1>
    <p class="text-xl text-muted">
      Perform aggregate operations on your data.
    </p>
  </header>

  <div class="space-y-12">
    <section>
      <h2 class="text-2xl font-semibold mb-4">Count</h2>
      <app-code-block [code]="countCode" language="rust" />
    </section>

    <section>
      <h2 class="text-2xl font-semibold mb-4">Aggregate Functions</h2>
      <app-code-block [code]="aggregateCode" language="rust" />
    </section>

    <section>
      <h2 class="text-2xl font-semibold mb-4">Group By</h2>
      <app-code-block [code]="groupByCode" language="rust" />
    </section>
  </div>
</article>