/// <summary> /// Searches for an entity specified by an ID and table name. /// </summary> /// <param name="id">The ID of the entity to search for.</param> /// <param name="tableName">The name of the table the entity resides in.</param> /// <returns>The System.Threading.Tasks.Task that represents the asynchronous operation, containing /// the entity specified by the table name and the specified ID.</returns> public async Task <object> FindByIdAndTableNameAsync(string id, string tableName) { return(await EntitiesRepo.FindByIdAndTableNameAsync(id, tableName)); }