Base solution for your next web application
Open Closed

Separate DBContext for different modules #3759


User avatar
0
VuCA created

Hi, I'm using asp.net zero in my project, and my project have two module:

  1. Functional
  2. Reports When user access to export reports, some report take many time to process so that it affect to another function. Can you give me a solution to solve this problem? Thanks!

3 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi @VuCA,

    Does this happen because of AspNet Zero ? Or is there a big data to gerenerate report for ?

  • User Avatar
    0
    VuCA created

    <cite>ismcagdas: </cite> Hi @VuCA,

    Does this happen because of AspNet Zero ? Or is there a big data to gerenerate report for ?

    Dear ismcagdas,

    It's because a big data to generate report, so when one user execute report and other user will be affect. Can you give me a solution for this situation.

    Thanks!

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi @VuCA,

    This is a common software problem and I think it is not related to AspNet Zero.

    One alternative could be generating report on the background (with a backgroudn job) and show it to user when it is generated successfully.

    You can search on the web for other alternatives as well.

    Thanks.