Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="cdmdotnet Limited">
4 : // // Copyright cdmdotnet Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 : using System.Linq.Expressions;
11 :
12 : namespace Cqrs.MongoDB.DataStores.Indexes
13 : {
14 : public abstract class ByRsnMongoDbIndex<TEntity> : MongoDbIndex<TEntity>
15 : where TEntity : Entities.MongoEntity
16 0 : {
17 0 : protected ByRsnMongoDbIndex()
18 : {
19 : Selectors = new Expression<Func<TEntity, object>>[]
20 : {
21 : entity => entity.Rsn
22 : };
23 :
24 : IsUnique = true;
25 : }
26 : }
27 : }
|