IsolatedStorageSettingsにJSON文字列ObservableCollection<Recipe>
として保存しました。
このクラスには、次のコードによって初期化されるというRecipe
フィールドがあります。Category
[JsonProperty]
private Category _category = RecipesViewModel.BaseCategories.First();
ACategory
は次のようなものです。
[JsonProperty]
public Categories BaseCategory;
/// <summary>
/// Background picture for the cagtegory
/// </summary>
public string Picture
{
get { return string.Format(@"/Assets/CategoriesPictures/{0}.jpg", BaseCategory); }
}
/// <summary>
/// Category's name
/// </summary>
public string Name
{
get { return BaseCategory.ToString(); }
}
/// <summary>
/// List of recipes that belong to this category
/// </summary>
public IEnumerable<Recipe> Recipes
{
get { return App.ViewModel.GetRecipesByCategory(this); }
}
/// <summary>
/// We need this to let everyone know that something may have been changed in our collections
/// </summary>
public void UpdateCategory()
{
RaisePropertyChanged(() => Recipes);
}
BaseCategory
単純な列挙型はどこですか
public enum Categories
{
Breakfast,
Lunch,
Appetizer,
Sidedish,
Soup,
Dessert,
Beverages
}
現時点では、 に 1 つしかありません。Recipe
これObservableCollection<Recipe>
は、 IsolatedStorageSettingsに保存されているJSONです。
[
{
"_addedDate": "2013-11-10T19:08:00.8968706+01:00",
"_category": {
"BaseCategory": 2
},
"_ingredients": [],
"_recipeName": "recipeName",
"_steps": [],
"_temperature": 0.0
}
]
は次のBaseCategories
ように宣言されています。
public static ReadOnlyCollection<Category> BaseCategories { get; private set; }
そして、それはこの方法で構築されています:
private static void BuildCategories()
{
var categories = new ObservableCollection<Category>();
foreach (var enumValue in from category in typeof(Categories).GetFields()
where category.IsLiteral
select (Categories)category.GetValue(typeof(Categories)))
{
categories.Add(new Category { BaseCategory = enumValue });
}
BaseCategories = new ReadOnlyObservableCollection<Category>(categories);
}
何が起こるかというと、私のデータ読み込みメソッドの間に、 の最初の要素がBaseCategories
JSONにCategory
書き込まれたものになります。
この場合、BreakfastからAppetizerに変わります(これはCategory
、唯一保存された のRecipe
です)。
これは、データをロードするために使用するコードです。
public void LoadData()
{
if (BaseCategories.IsEmpty())
BuildCategories();
// Load data from IsolatedStorage
var jsonString = "";
if (IsolatedStorageSettings.ApplicationSettings.TryGetValue(RecipesKey, out jsonString))
{
// BEFORE THIS LINE EVERYTHING IS FINE
Recipes = JsonConvert.DeserializeObject<ObservableCollection<Recipe>>(jsonString);
// AFTER THIS LINE, THE FIRST CATEGORY IN BaseCategories IS CHANGED
}
UpdateCategories();
IsDataLoaded = true;
}
そこで何が起こっているか知っている人はいますか?
私は一日中このコードに取り組んできたので、今のところ私の頭は消えています!