Etiqueta: ASP.NET

Couchbase with Windows and .NET – Part 5 – ASP.NET CRUD
Part 1 covered how to install and setup Couchbase on Windows Part 2 covered some Couchbase lingo that you’ll need to know Part 3 showed the very simplest example of using Couchbase in ASP.NET In Part 4, I did some...

Full Text Search in .NET with Couchbase 4.5
Full Text Search (or FTS) is a new feature that is being released as a developer preview in Couchbase 4.5. It is not meant for production, and is not yet supported, but it is a glimpse at things to come....

Couchbase with Windows and .NET – Part 4 – Linq2Couchbase
Part 1 covered how to install and setup Couchbase on Windows Part 2 covered some Couchbase lingo that you’ll need to know Part 3 showed the very simplest example of using Couchbase in ASP.NET In this blog post, I’m going...

Couchbase with Windows and .NET – Part 3 – ASP.NET MVC
This blog post is part 3 of a series: Part 1 covered how to install and setup Couchbase on Windows Part 2 covered some Couchbase lingo that you’ll need to know Are you ready to write some code? In this...

Lançado o Beta 3 da integração ASP.NET do Couchase!
Hoje lançamos o Beta 3 dos pacotes de integração ASP.NET do Couchbase no NuGet! Formalmente conhecido como Couchbase Caching and Session providers, esse projeto contém ou conterá implementações de várias APIs (Caching/Session providers, Identity, etc.) para integração entre o Couchbase Server...

O provedor de armazenamento de identidade do Couchbase ASP.NET: Parte 1
O ASP.NET Identity System é uma nova coleção de componentes de software para dar suporte à autenticação e à autenticação em aplicativos ASP.NET. Ele oferece aprimoramentos significativos em relação ao ASP.NET Membership e ao Simple Membership anteriores e tem como objetivo facilitar o suporte a backups não relacionais...

.NET Couchbase Client Instrumentation with ASP.NET and Glimpse
The .NET Client Library provides detailed error information by way of its IOperationResult interface. To find out why a store operation failed, use ExecuteStore instead of Store. var result = client.ExecuteStore(StoreMode.Add, “key”, “value”); if (! result.Success) { Console.WriteLine(“Operation failed with...

XDCR with ASP.NET and Nancy
You’re probably aware of the new Cross Data Center Replication (XDCR) feature of Couchbase Server 2.0. Its most obvious utility is to allow you to replicate data from one Couchbase cluster to another. However, there are more novel use cases...