|
@@ -12,6 +12,7 @@ using Dapper;
|
|
|
using GxPress.Result.Article;
|
|
|
using System;
|
|
|
using GxPress.EnumConst;
|
|
|
+using AutoMapper;
|
|
|
|
|
|
namespace GxPress.Repository.Implement
|
|
|
{
|
|
@@ -20,13 +21,15 @@ namespace GxPress.Repository.Implement
|
|
|
private readonly Repository<ArticleGroup> _repository;
|
|
|
private readonly string _connectionString;
|
|
|
private readonly string _databaseTypeStr;
|
|
|
- public ArticleGroupRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor)
|
|
|
+ private readonly IMapper _mapper;
|
|
|
+ public ArticleGroupRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper _mapper)
|
|
|
{
|
|
|
_databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType;
|
|
|
_connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
|
|
|
_repository = new Repository<ArticleGroup>(database);
|
|
|
+ this._mapper = _mapper;
|
|
|
}
|
|
|
|
|
|
public IDatabase Database => _repository.Database;
|
|
@@ -49,7 +52,14 @@ namespace GxPress.Repository.Implement
|
|
|
|
|
|
public async Task<ArticleGroupResult> GetAsync(int id)
|
|
|
{
|
|
|
- var result = await _repository.GetAsync<ArticleGroupResult>(Q.Where(nameof(Entity.ArticleGroup.Id), id));
|
|
|
+ var result = new ArticleGroupResult();
|
|
|
+ if (id > 0)
|
|
|
+ {
|
|
|
+ var articleGroup = await _repository.GetAsync(id);
|
|
|
+ result = _mapper.Map<ArticleGroupResult>(articleGroup);
|
|
|
+ }
|
|
|
+ if (result == null)
|
|
|
+ result = new ArticleGroupResult();
|
|
|
result.StyleCssDictionary = new Dictionary<string, string>();
|
|
|
Type t = typeof(AppPageStyleCssConst);
|
|
|
Array arrays = Enum.GetValues(t);
|