public IDbCommand GetCache(string strNomTable, ETypeRequete typeRequete) { CCacheRequetesForTable cache = null; if (m_dicPourTables.TryGetValue(strNomTable, out cache)) return cache.GetCache(typeRequete); return null; }
public void SetCache(string strNomTable, ETypeRequete typeRequete, IDbCommand command) { CCacheRequetesForTable cache = null; if (!m_dicPourTables.TryGetValue(strNomTable, out cache)) { cache = new CCacheRequetesForTable(); m_dicPourTables[strNomTable] = cache; } cache.SetCache(typeRequete, command); }