Using Durable Services for saving wcf instances
        Posted  
        
            by miker169
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by miker169
        
        
        
        Published on 2010-03-16T12:03:46Z
        Indexed on 
            2010/03/16
            12:06 UTC
        
        
        Read the original article
        Hit count: 306
        
I am currently creating a service which connects to a DAL and that can run a few stored procedures, one of the issues I am facing is that for certain times of the month, we can't update the database, (at the moment this is done manually. This is done via the user adding a note to their calendar)
But I would like to automate this process, one of the possible solutions I can think of using is a durable service. When the date is lets say the 1st of the month, the Update/Insert/Delete instances can get saved to a database, and then ran after that date in a batch.
Is this the intended use of durable services ? Is there a better route I could possibly take ?
© Stack Overflow or respective owner