/trunk/Framework.Infrastructure/MongoDBRepository.cs

# · C# · 296 lines · 239 code · 45 blank · 12 comment · 39 complexity · 4e6b7ebf443b2f332873a77a4a8494cd MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Framework.UnitOfWork;
  6. using Framework.Infrastructure.Context;
  7. using Norm.Collections;
  8. using Framework.Storage;
  9. using System.Linq.Expressions;
  10. using Framework.Specifications;
  11. using Framework.Infrastructure;
  12. namespace Framework.Repositories
  13. {
  14. public class MongoDBCtxRepository<TEntity> : Repository<TEntity>
  15. where TEntity : class, IAggregateRoot, new()
  16. {
  17. public MongoDBCtxRepository(IUnitOfWork unitOfWork)
  18. : base(unitOfWork)
  19. {
  20. }
  21. public MongoDBContext Container
  22. {
  23. get { return UnitOfWork.DbContext as MongoDBContext; }
  24. }
  25. IMongoCollection<TEntity> ObjectSet
  26. {
  27. get { return _objectSet ?? (_objectSet = Container.GetCollection<TEntity>()); }
  28. }
  29. IMongoCollection<TEntity> _objectSet;
  30. protected override void DoAdd(IQueryable<TEntity> entities)
  31. {
  32. Container.Add<TEntity>(entities);
  33. }
  34. protected override void DoAdd(TEntity entity)
  35. {
  36. Container.Add<TEntity>(entity);
  37. }
  38. protected override TEntity DoGetByKey(params object[] keyValues)
  39. {
  40. return ObjectSet.FindOne(new { _id = keyValues[0] });
  41. }
  42. protected override IQueryable<TEntity> DoGetAll(ISpecification<TEntity> specification, Expression<Func<TEntity, dynamic>> sortPredicate, SortOrder sortOrder, Expression<Func<TEntity, dynamic>> includePath = null)
  43. {
  44. var query = ObjectSet.AsQueryable();
  45. if (specification != null)
  46. query = query.Where(specification.GetExpression());
  47. if (sortPredicate == null)
  48. {
  49. return query;
  50. }
  51. if (sortOrder.Equals(SortOrder.Descending))
  52. {
  53. return query.OrderByDescending(sortPredicate);
  54. }
  55. else
  56. {
  57. return query.OrderBy(sortPredicate);
  58. }
  59. }
  60. protected override IQueryable<TEntity> DoFindAll(ISpecification<TEntity> specification, Expression<Func<TEntity, dynamic>> sortPredicate, SortOrder sortOrder, Expression<Func<TEntity, dynamic>> includePath = null)
  61. {
  62. return DoGetAll(specification, sortPredicate, sortOrder);
  63. }
  64. protected override TEntity DoGet(ISpecification<TEntity> specification, Expression<Func<TEntity, dynamic>> includePath = null)
  65. {
  66. return ObjectSet.AsQueryable().FirstOrDefault(specification.GetExpression());
  67. }
  68. protected override TEntity DoFind(ISpecification<TEntity> specification, Expression<Func<TEntity, dynamic>> path = null)
  69. {
  70. return DoGet(specification);
  71. }
  72. protected override bool DoExists(ISpecification<TEntity> specification)
  73. {
  74. return ObjectSet.Count(specification.GetExpression()) > 0;
  75. }
  76. protected override void DoRemove(TEntity entity)
  77. {
  78. Container.Delete(entity);
  79. }
  80. protected override void DoUpdate(TEntity entity)
  81. {
  82. Container.Update<TEntity>(entity);
  83. }
  84. protected override IQueryable<TEntity> DoPageFind(int pageIndex, int pageSize, Expression<Func<TEntity, dynamic>> orderByExpression, ISpecification<TEntity> specification, bool ascending, Expression<Func<TEntity, dynamic>> includePath = null)
  85. {
  86. //checking arguments for this query
  87. if (pageIndex < 0)
  88. throw new ArgumentException("InvalidPageIndex");
  89. if (pageSize <= 0)
  90. throw new ArgumentException("InvalidPageCount");
  91. if (orderByExpression == (Expression<Func<TEntity, dynamic>>)null)
  92. throw new ArgumentNullException("OrderByExpressionCannotBeNull");
  93. if (specification == (ISpecification<TEntity>)null)
  94. {
  95. specification = new AllSpecification<TEntity>();
  96. }
  97. //Create associated IObjectSet and perform query
  98. //this query cannot use Paginate IQueryable extension method because Linq queries cannot be
  99. //merged with Object Builder methods. See Entity Framework documentation for more information
  100. IQueryable<TEntity> query = ObjectSet.AsQueryable().Where(specification.GetExpression());
  101. return (ascending)
  102. ?
  103. query
  104. .OrderBy(orderByExpression)
  105. .GetPageElements(pageIndex, pageSize)
  106. :
  107. query
  108. .OrderByDescending(orderByExpression)
  109. .GetPageElements(pageIndex, pageSize);
  110. }
  111. protected override IQueryable<TEntity> DoPageFind(int pageIndex, int pageSize, Expression<Func<TEntity, dynamic>> orderByExpression, ISpecification<TEntity> specification, bool ascending, ref long totalCount, Expression<Func<TEntity, dynamic>> includePath = null)
  112. {
  113. //checking arguments for this query
  114. if (pageIndex < 0)
  115. throw new ArgumentException("InvalidPageIndex");
  116. if (pageSize <= 0)
  117. throw new ArgumentException("InvalidPageCount");
  118. if (orderByExpression == (Expression<Func<TEntity, dynamic>>)null)
  119. throw new ArgumentNullException("OrderByExpressionCannotBeNull");
  120. if (specification == (ISpecification<TEntity>)null)
  121. {
  122. specification = new AllSpecification<TEntity>();
  123. }
  124. //Create associated IObjectSet and perform query
  125. IQueryable<TEntity> query = ObjectSet.AsQueryable().Where(specification.GetExpression());
  126. totalCount = ObjectSet.AsQueryable().Count(specification.GetExpression());
  127. return (ascending)
  128. ?
  129. query
  130. .OrderBy(orderByExpression)
  131. .GetPageElements(pageIndex, pageSize)
  132. :
  133. query
  134. .OrderByDescending(orderByExpression)
  135. .GetPageElements(pageIndex, pageSize);
  136. }
  137. protected override IQueryable<TEntity> DoPageFind(int pageIndex, int pageSize, string[] orderByFileds, ISpecification<TEntity> specification, bool ascending, Expression<Func<TEntity, dynamic>> includePath = null)
  138. {
  139. //checking arguments for this query
  140. if (pageIndex < 0)
  141. throw new ArgumentException("InvalidPageIndex");
  142. if (pageSize <= 0)
  143. throw new ArgumentException("InvalidPageCount");
  144. var orderBys = new List<LambdaExpression>();
  145. if (orderByFileds != null && orderByFileds.Length > 0)
  146. {
  147. foreach (var field in orderByFileds)
  148. {
  149. var le = Utility.GetLambdaExpression(typeof(TEntity), field);
  150. orderBys.Add(le);
  151. }
  152. }
  153. if (specification == (ISpecification<TEntity>)null)
  154. {
  155. specification = new AllSpecification<TEntity>();
  156. }
  157. //Create associated IObjectSet and perform query
  158. IQueryable<TEntity> query = ObjectSet.AsQueryable().Where(specification.GetExpression());
  159. for (int i = 0; i < orderBys.Count; i++)
  160. {
  161. var orderByExpression = orderBys[i];
  162. string orderByCMD = "OrderBy";
  163. if (i > 0)
  164. {
  165. if (!ascending)
  166. {
  167. orderByCMD = "ThenByDescending";
  168. }
  169. else
  170. {
  171. orderByCMD = "ThenBy";
  172. }
  173. }
  174. else
  175. {
  176. if (!ascending)
  177. {
  178. orderByCMD = "OrderByDescending";
  179. }
  180. }
  181. MethodCallExpression orderByCallExpression =
  182. Expression.Call(typeof(Queryable),
  183. orderByCMD,
  184. new Type[] { typeof(TEntity),
  185. orderByExpression.Body.Type},
  186. query.Expression,
  187. orderByExpression);
  188. query = query.Provider.CreateQuery<TEntity>(orderByCallExpression);
  189. }
  190. return query.GetPageElements(pageIndex, pageSize);
  191. }
  192. protected override IQueryable<TEntity> DoPageFind(int pageIndex, int pageSize, string[] orderByFileds, ISpecification<TEntity> specification, bool ascending, ref long totalCount, Expression<Func<TEntity, dynamic>> includePath = null)
  193. {
  194. //checking arguments for this query
  195. if (pageIndex < 0)
  196. throw new ArgumentException("InvalidPageIndex");
  197. if (pageSize <= 0)
  198. throw new ArgumentException("InvalidPageCount");
  199. var orderBys = new List<LambdaExpression>();
  200. if (orderByFileds != null && orderByFileds.Length > 0)
  201. {
  202. foreach (var field in orderByFileds)
  203. {
  204. var le = Utility.GetLambdaExpression(typeof(TEntity), field);
  205. orderBys.Add(le);
  206. }
  207. }
  208. if (specification == (ISpecification<TEntity>)null)
  209. {
  210. specification = new AllSpecification<TEntity>();
  211. }
  212. //Create associated IObjectSet and perform query
  213. //this query cannot use Paginate IQueryable extension method because Linq queries cannot be
  214. //merged with Object Builder methods. See Entity Framework documentation for more information
  215. IQueryable<TEntity> query = ObjectSet.AsQueryable().Where(specification.GetExpression());
  216. totalCount = ObjectSet.AsQueryable().Count(specification.GetExpression());
  217. for (int i = 0; i < orderBys.Count; i++)
  218. {
  219. var orderByExpression = orderBys[i];
  220. string orderByCMD = "OrderBy";
  221. if (i > 0)
  222. {
  223. if (!ascending)
  224. {
  225. orderByCMD = "ThenByDescending";
  226. }
  227. else
  228. {
  229. orderByCMD = "ThenBy";
  230. }
  231. }
  232. else
  233. {
  234. if (!ascending)
  235. {
  236. orderByCMD = "OrderByDescending";
  237. }
  238. }
  239. MethodCallExpression orderByCallExpression =
  240. Expression.Call(typeof(Queryable),
  241. orderByCMD,
  242. new Type[] { typeof(TEntity),
  243. orderByExpression.Body.Type},
  244. query.Expression,
  245. orderByExpression);
  246. query = query.Provider.CreateQuery<TEntity>(orderByCallExpression);
  247. }
  248. return query.GetPageElements(pageIndex, pageSize);
  249. }
  250. }
  251. }