我有以下存储库:
public class GenericRepository<T> : IRepository<T> where T : class
{
public GenericRepository(DbContext dbContext)
{
if (dbContext == null)
throw new ArgumentNullException("An instance of DbContext is required to use this repository", "context");
DbContext = dbContext;
DbSet = DbContext.Set<T>();
}
protected DbContext DbContext { get; set; }
protected DbSet<T> DbSet { get; set; }
public virtual IQueryable<T> Find(Expression<Func<T, bool>> predicate)
{
return DbSet.Where<T>(predicate);
}
public virtual IQueryable<T> GetAll()
{
return DbSet;
}
和服务:
private IRepository<Subject> _subjectsRepository;
private IRepository<Content> _contentsRepository;
public ContentService(IRepositoryProvider repositoryProvider)
: base(repositoryProvider)
{
_subjectsRepository = GetStandardRepo<Subject>();
_contentsRepository = GetStandardRepo<Content>();
}
public IList<Content> GetContents(int subjectId, int contentTypeId, int contentStatusId)
{
var contents = _contentsRepository.GetAll()
.Where(a => a.SubjectId == subjectId &&
a.ContentTypeId == contentTypeId &&
(contentStatusId == 99 ||
a.ContentStatusId == contentStatusId))
.ToList();
return contents;
}
我想找到发送到数据库的 SQL 文本。我知道我可以这样做:
db.GetCommand(query).CommandText
但是有人可以帮助我并告诉我应该把它放在我的代码中的什么地方。
我想找到发送到数据库的 SQL 文本,我知道我可以这样做