Exemplo n.º 1
0
		static Entity[] GetClosure(ResSet starts, Hashtable table) {
			if (starts == null) return null;
			return GetClosure(starts.ToArray(), table);
		}
Exemplo n.º 2
0
		static Entity[] GetClosure(ResSet starts, Hashtable table, bool includeStarts) {
			if (starts == null) return null;
			return GetClosure(starts.ToArray(), table, includeStarts);
		}