That doesn't look like the full stack trace.
Can you show the full stack trace in Logs.txt?
Not with NuGet.
How to migrate existing solution: https://github.com/aspnetzero/aspnet-zero/issues/96#issuecomment-268093697
You can cast it to the concrete class:
var name = (localizableString as LocalizableString).Name;
How is PermissionChecker being resolved?
So... What do you mean?
How to migrate existing solution: https://github.com/aspnetzero/aspnet-zero/issues/96#issuecomment-268093697
how do I make a pull request on the private repository?
Don't. Just chain the Promise.
// Get all the variants
var _ProductService = abp.services.app.product;
var ProductKey = $("#Id").val();
abp.ui.setBusy();
var getAllTheVariants = _ProductService.getVariants(ProductKey).done(function (result) {
Variants = result;
showVariants();
}).always(function () {
abp.ui.clearBusy();
});
getAllTheVariants.then(function () {
// Put "the code below this" that should not execute "until this call completes" here
});
This should be fixed in v5.0.1. But you can download v5.0.4 now.