|
|
@ -7,6 +7,7 @@ using Volo.Abp.Domain.Entities;
|
|
|
|
using Volo.Abp.Domain.Repositories.EntityFrameworkCore;
|
|
|
|
using Volo.Abp.Domain.Repositories.EntityFrameworkCore;
|
|
|
|
using Volo.Abp.EntityFrameworkCore;
|
|
|
|
using Volo.Abp.EntityFrameworkCore;
|
|
|
|
using Volo.Blogging.EntityFrameworkCore;
|
|
|
|
using Volo.Blogging.EntityFrameworkCore;
|
|
|
|
|
|
|
|
using System.Linq.Dynamic.Core;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Volo.Blogging.Posts
|
|
|
|
namespace Volo.Blogging.Posts
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -34,5 +35,10 @@ namespace Volo.Blogging.Posts
|
|
|
|
|
|
|
|
|
|
|
|
return post;
|
|
|
|
return post;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public override IQueryable<Post> WithDetails()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return GetQueryable().IncludeDetails();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|