Files
Yi.Admin/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Domain/Repositories/IArticleRepository.cs

17 lines
501 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
2024-01-11 18:51:53 +08:00
using Yi.Framework.Bbs.Domain.Entities.Forum;
2023-12-11 09:55:12 +08:00
using Yi.Framework.SqlSugarCore.Abstractions;
namespace Yi.Framework.Bbs.Domain.Repositories
{
2024-05-22 14:35:08 +08:00
public interface IArticleRepository: ISqlSugarRepository<ArticleAggregateRoot,Guid>
2023-12-11 09:55:12 +08:00
{
2024-05-22 14:35:08 +08:00
Task<List<ArticleAggregateRoot>> GetTreeAsync(Expression<Func<ArticleAggregateRoot, bool>> where);
2023-12-11 09:55:12 +08:00
}
}