IamIC
IamIC

Reputation: 18239

Create sparse index on MongoDB using official C# driver

The official C# driver offers the ability to specify which fields to sort asc, desc, and geo. It doesn't offer sparse.

How do I do this directly from C#?

Upvotes: 1

Views: 797

Answers (1)

Remon van Vliet
Remon van Vliet

Reputation: 18595

The 1.1. driver has SetSparse in the IndexBuilder.

Upvotes: 1

Related Questions