Category: .NET

Moving from SQL Server to Couchbase Part 3: App Migration
Moving from SQL Server to Couchbase Part 3: App Migration

In this blog post series, I'm laying out the considerations when moving from Microsoft SQL Server to Couchbase Server. This post is about app migration.

Couchbase Meets .Net Core and Docker
Couchbase Meets .Net Core and Docker

With the release of the Couchbase .NET SDK 2.4.0, Couchbase now has official support for .NET Core. This opens up a wide new world for .NET Couchbase developers. In particular, we can now use Docker to easily manage our applications...

SDK Features – New For Couchbase 4.6
SDK Features – New For Couchbase 4.6

Along with this week’s Couchbase Server 4.6 release we have a super packed release with several new SDK features to help you streamline development. From efficiently managed Data Structures to the latest support for .NET Core, it is time to update to...

Data Structures: Native Collections New in Couchbase 4.6
Data Structures: Native Collections New in Couchbase 4.6

Data Structures in Couchbase 4.6 is our newest SDK feature. Easily map your client applications to your JSON data into language specific structures!

Introducing Couchbase .NET 2.4.0 – .NET Core GA
Introducing Couchbase .NET 2.4.0 – .NET Core GA

Introducing the Couchbase .NET SDK for Microsoft Core and Full Framework. Including support for Datastructures, N1QL and View Streaming API and MS Logging.

Moving from SQL Server to Couchbase Part 2: Data Migration
Moving from SQL Server to Couchbase Part 2: Data Migration

In this blog post series, I'm laying out the considerations when moving from Microsoft SQL Server to Couchbase Server. This post is about data migration.

Moving from SQL Server to Couchbase Part 1: Data Modeling
Moving from SQL Server to Couchbase Part 1: Data Modeling

This post explains how to move a document database when you have a relational background. Specifically, Microsoft SQL Server compared to Couchbase Server.

.NET Core List, Queue, and Dictionary Data Structures backed by Couchbase
.NET Core List, Queue, and Dictionary Data Structures backed by Couchbase

The addition of the sub-document API to Couchbase 4.5 has paved the way for efficient data structure support in Couchbase. In this blog post, I’m going to show a demo of three types of data structures you can use with...

Getting Started with GeoJSON, Couchbase, .NET, and Google Maps
Getting Started with GeoJSON, Couchbase, .NET, and Google Maps

Learn through a very simple example of storing/querying GeoJSON data from a Couchbase instance &loading it into a mapping product.

Couchbase .NET SDK 2.0.2 released Today!
Couchbase .NET SDK 2.0.2 released Today!

Today we are releasing another bug fix and maintenance release of the Couchbase .NET SDK: 2.0.2. This is a follow up release to 2.0 and 2.0.1 and most notably provides support for N1QL DP4 which is now merged with the...

Resolving Keys Embedded within JSON
Resolving Keys Embedded within JSON

A question came up today from a developer looking to migrate to Couchbase from something else.  That “something else” had a JSON document with some metadata in it.  Couchbase separates data from metadata for some good reasons, so then we’d...

Using Jil for custom JSON Serialization in the Couchbase .NET SDK
Using Jil for custom JSON Serialization in the Couchbase .NET SDK

How to override the default serializer with own custom JSON serializer Jil by extending the ITypeSerializer interface and providing own serializer.