LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System; 2 : using System.Linq.Expressions; 3 : 4 : namespace Cqrs.Mongo.DataStores.Indexes 5 : { 6 : public abstract class ByRsnMongoIndex<TEntity> : MongoIndex<TEntity> 7 : where TEntity : Entities.MongoEntity 8 0 : { 9 0 : protected ByRsnMongoIndex() 10 : { 11 : Selectors = new Expression<Func<TEntity, object>>[] 12 : { 13 : entity => entity.Rsn 14 : }; 15 : 16 : IsUnique = true; 17 : } 18 : } 19 : } |
Generated by: LCOV version 1.10 |