示例#1
0
        public static List <Dictionary <string, object> > ToDictionaryList(GameReviewList gameGenreList)
        {
            var result = new List <Dictionary <string, object> >();

            try
            {
                if (gameGenreList?.List?.Count > 0)
                {
                    result = (from gamereview in gameGenreList.List where gamereview != null select GameReview.ToDictionary(gamereview) into dictionary where dictionary?.Count > 0 select dictionary).ToList();
                }
            }
            catch (Exception ex)
            {
                Log.Error(ex);
            }
            return(result);
        }
示例#2
0
        public static GameReviewList FromDictionaryList(List <Dictionary <string, object> > dictionaryList)
        {
            var result = new GameReviewList();

            try
            {
                if (dictionaryList?.Count > 0)
                {
                    foreach (var dataDictionary in dictionaryList.Where(dataDictionary => dataDictionary?.Count > 0))
                    {
                        result.List.Add(GameReview.FromDictionary(dataDictionary));
                    }
                }
            }
            catch (Exception ex)
            {
                Log.Error(ex);
            }
            return(result);
        }