Hi,
It require MSDTC. Azure doesn't support MSDTC. can you provide other solution to use multiple database and multiple dbcontet using this: <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/1706">https://github.com/aspnetboilerplate/as ... ssues/1706</a>
Thanks
Hi,
I want to fill username when Repository.Insert() is executed and modify username when Repository.Update() executed. Field username will be stored in table. i want use this username info instead of id. can you help me how to extend base property in auditedEntity to add CreatorUserName and ModifierUserName?
Hi @aaron,
What do you mean with "implement and manage your own CreatorUserName property" ? can i extend auditEntity property to add CreatorUserName ? please advise.
Hi,
Can i change data type CreatorUserId from long? to varchar ? How about if CreatorUserId is filled with username ? is this safe for other relation in module zero or abp core entities ?
Hi,
I have successfully implement using simple loop on Controller, but my problem now is how to integrate real loop to processing data on MyAppService on Application Layer?
Thanks
Hi,
Any help??
Hi @aaron,
How about if i want to get all data based on filter on modelB? Your solution is not good because i have to get all data from model A first. This is so dangerous solution if modelA have 1,000k more record.
Do you have other solution to implement join entities on multiple dbcontext? please help
Hi @ismcagdas,
Yes i have implement SignalR hub and manager on web layer.
I have create simple loop to show progress result to UI
[HttpPost]
public ActionResult DoJob()
{
var job = JobManager.Instance.DoJobAsync(j =>
{
for (var progress = 0; progress <= 100; progress++)
{
if (j.CancellationToken.IsCancellationRequested)
{
return;
}
Thread.Sleep(200);
j.ReportProgress(progress);
}
});
return Json(new
{
JobId = job.Id,
Progress = job.Progress
});
}
i have problem to connect from this ProgressController to My service in Application layer. can you give me a step by step how to solve this? Any help would be appreciate it!
Hi @aaron,
Thanks for your help! appreciate it.
Hi @aaron,
Thanks for your help, appreciate it!
How to set value LastModificationTime and LastModifierUserId when Repository.Insert executed?