Hi, I would greatly appreciate some input to this critical issue please. We would like to use LLBLGen to generate csharp objects to access SQL Server (I am brand new to ORM).
Our database is generally large in size, hundreds of GBs, and consists of about 200 tables. What we need to do often is to quickly determine all objects that depend on/associated with a given object (using FKs) before performing certain action on the later (e.g., list all objects that will be deleted as the result of deleting a specific object).
My question is what I could do to quickly list all objects which depend on a specific object, using either csharp classes generated by LLBLGen or using NHibernate directly (most of the time we will be using the generated classes, except for this).
Many thanks