Hi,
because the HTTP Request is async. you can try this
//<suite-custom-code-block-1>
var _authors;
window.acme.bookStore.books.books.getAuthorLookup()
.then(function(authors){
_authors = authors;
});
//</suite-custom-code-block-1>
.........
{ data: "authorName",
render: function(authorID)
{
return _authors.items.find(type => type.id === authorID).firstname;
}
}
Hi,
You can share it with https://wetransfer.com/
Hi,
Basically assign a role to a user and then check it in the middleware, If user have a PublicUser role, then abort and redirect the request
https://abp.io/docs/latest/solution-templates/microservice/database-configurations#database-migrations-on-service-startup
HI,
could you please share a minimal reproducible project with me ? i will check it. thanks
shiwei.liang@volosoft.comr
Hi,
could you share the full steps? thanks.
Hi,
Yes, it's BackgroundJob system default implementation. https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BackgroundJobs/Volo/Abp/BackgroundJobs/BackgroundJobWorker.cs
Use a background worker to execute pending jobs every minute. if you want you can use Hangfire background job integration to replace the default
Hi,
You are right; ABP should have full support for docker; we'll discuss it internally and get back to you
Hi,
BackgroundJobWorker is used to execute background jobs