Category: .NET

Announcing the General Availability of the Couchbase EF Core Provider
The Couchbase EF Core Provider is now generally available. This release brings the power of Entity Framework Core to Couchbase, allowing .NET developers to work with Couchbase using familiar EF Core patterns. What is the Couchbase EF Core provider? Entity...

Certifications That Matter: How Couchbase Academy Elevates Your Database Career
What are database certifications? Certifications are opportunities. They give YOU, a knowledgeable, adept, and forward-thinking Database professional, ammunition to kickstart YOUR personal brand. Earning certifications allows you to take what you know and share it with the rest of the...

How to Build Real World Web Applications with Couchbase
One great benefit of open-source projects lies in their ability to encourage a diverse and collaborative learning environment. They allow developers from different backgrounds to compare and contrast methodologies, and most importantly, learn from each other. One such open-source initiative,...

Extending .NET Caching Provider for Collections
To help .NET developers better use Couchbase in their applications, there is a collection of community-supported Couchbase Extensions. These include extensions for caching, session, multiop, compression, and locking. And there are some officially supported extensions for dependency injection, open telemetry,...

DevIntersection 2022 Recap
As a sponsor of the DevIntersection 2022 conference in Las Vegas, Couchbase was able to showcase its NoSQL database solutions to the attendees. We had a booth in the expo hall and a speaking session where I discussed caching. Finally,...

ASP.NET Core CRUD with NoSQL: Part 5
This ASP.NET Core CRUD series is coming to end. We’ve covered setup (part 1), reading with SQL++ (part 2), reading with key-value (part 3), and creating/updating (part 4). In this last post, we’ll look at the D in CRUD: deleting....

ASP.NET Core CRUD with NoSQL: Part 4
ASP.NET CRUD apps include interaction with data that consists of create, read, update, and delete. In part 1, we setup a basic ASP.NET Core project. In part 2, we added the first read endpoint, using a SQL++ query against wishlist...

ASP.NET Core CRUD with NoSQL: Part 3
ASP.NET CRUD applications consist of create, read, update, and delete. In part 1, we set up a basic ASP.NET Core project. In part 2, we added the first read endpoint, using a SQL++ query against wishlist data. Couchbase’s SQL++ is...

ASP.NET Core CRUD with NoSQL: Part 2
CRUD stands for Create, Read, Update, and Delete. In part 2, we’ll look at R for Read, and build an ASP.NET Core endpoint to read data from Couchbase using SQL. Make sure to read part 1 of this series, which...

ASP.NET Core CRUD with NoSQL – Part 1
Let’s build an ASP.NET Core CRUD with NoSQL application. I’ll be creating a basic CRUD HTTP API (CRUD is Create, Read, Update, Delete). This API will be operating on a gift wishlist: all the items I want you to buy...