Yes.
<span *ngIf="ncEntityForm.get('displayName').errors['minlength'] || ncEntityForm.get('displayName').errors['maxlength']">
{{'StringLengthDoesntMatch' | localize : ('DisplayName' | localize) : '2' : '256'}}
</span>
How are you using it?
In your component's template you can use multiple arguments by separating them with colons:
<small>— https://stackoverflow.com/questions/36816788/how-do-i-call-an-angular-2-pipe-with-multiple-arguments</small>
{{'StringLengthDoesntMatch' | localize : ('DisplayName' | localize) : '2' : '256'}}
Show your implementation of IProductsBrandsAppService
.
IProductsBrandsAppService
.
Show your implementation.
What error?
Yes, that is fine. Data filters still work too.
private IQueryable YourEntitiesRepository => QueryContext.YourEntities.AsQueryable();
YourEntitiesQueryable
is more accurate. It doesn't use repository abstraction at all.
There is direct dependency on YourContext
from data layer.
How to reproduce?