Can QuickGraph help me with my requirements below?
(a) want to simulate a graph of nodes and directed relationships between nodes — for example, to simulate web pages / files linked by URL, or to simulate IT infrastructure and dependencies between hardware / software. The library will include methods such as
* Node.GetDirectParents()
* Node.GetRootParents()
* Node.GetDirectChildren()
* Node.GetAllChildren()
(b) data must be stored in the database - therefore, it must support SQL Server and, ideally, SQLite.
If he supports these requirements, I would like to hear:
any pointers to any parts of QuickGraph to search for?
What is the best concept? use from the point of view of use database persistence is a simpler design so that the search / method works directly on the database or supports QuickGraph mind to be able to work in memory and “save” to the database all changes at the corresponding point in time (for example as ADO.net DataTable does, etc.)
Thanks in advance
source
share