0

I have a database table (a schedule) which maps datetime to some action. What is the best way to implement a windows service which can perform those actions on specified time? The only thing that comes to mind is to query table from the service with some interval, but I think that there is more proper way. Do you have any ideas on how to do that?

Qué Padre
  • 2,005
  • 3
  • 24
  • 39

1 Answers1

1

What about using Quartz .NET? It could be a possible solution :

Quartz.NET is a full-featured, open source job scheduling system that can be used from smallest apps to large scale enterprise systems.

Here's the feature page and a tutorial.

AirL
  • 1,887
  • 2
  • 17
  • 17