Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

https://aspnetboilerplate.com/Pages/Documents/Audit-Logging

You are discarding the filter expression, do these:

protected override Expression<Func<TEntity, bool>> CreateFilterExpression<TEntity>()
{
    // Expression<Func<TEntity, bool>> expression = null;
    var expression = base.CreateFilterExpression<TEntity>(); // Change to this

    if (typeof(IHasCompany).IsAssignableFrom(typeof(TEntity)))
    {
        Expression<Func<TEntity, bool>> companyFilter = e => ((IHasCompany)e).CompanyId == CurrentCompanyId || (((IHasCompany)e).CompanyId == CurrentCompanyId) == IsCompanyFilterEnabled;
        expression = expression == null ? companyFilter : CombineExpressions(expression, companyFilter);
    }
    // return base.CreateFilterExpression<TEntity>();
    return expression; // Change to this
}

Did you log in?

https://docs.aspnetzero.com/documents/zero/latest/Development-Guide-Core#identity-server-4-integration

Answer

Convert HTML and Export to PDF using DinkToPdf on ASP<span></span>.NET Boilerplate: https://medium.com/volosoft/convert-html-and-export-to-pdf-using-dinktopdf-on-asp-net-boilerplate-e2354676b357

Why doesn't it seem to be correct? permissionChecker.IsGranted(permissionName) will be false.

It is correct. Feature dependency means feature will be checked.

CSS Specificity: https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity CSS Specificity Calculator: https://specificity.keegan.st

Try:

body .ui-fileupload-override .ui-fileupload-buttonbar {
    background-color: green;
}

No, you should remove the old EmailSettingsEditDto.cs in the Host/Dto folder. It was moved.

Your upgrade steps are missing "Remove all files" as the first step.

Showing 241 to 250 of 1543 entries