Example #1
0
 private static IEnumerable <DesignSectionInfo> GetDesignSectionInfos(
     SQLiteConnection db,
     AssetDatabase assets,
     int designID)
 {
     foreach (Row row in db.ExecuteTableQuery(string.Format(Queries.GetDesignSectionInfo, (object)designID), true))
     {
         yield return(DesignsCache.GetDesignSectionInfoFromRow(row, db, assets));
     }
 }