Silverlight 5プロジェクトにIValueConverterのインスタンスがあり、カスタムデータをさまざまな色に変換します。データベースから実際の色の値を読み取る必要があります(これらはユーザーが編集できるため)。
Silverlightは非同期呼び出しを使用して、データベースからEntity Frameworkを介してデータをロードするため、データベースからの値を保持する単純なリポジトリを作成しました。
インターフェース:
public interface IConfigurationsRepository
{
string this[string key] { get; }
}
実装:
public class ConfigurationRepository : IConfigurationsRepository
{
private readonly TdTerminalService _service = new TdTerminalService();
public ConfigurationRepository()
{
ConfigurationParameters = new Dictionary<string, string>();
_service.LoadConfigurations().Completed += (s, e) =>
{
var loadOperation = (LoadOperation<Configuration>) s;
foreach (Configuration configuration in loadOperation.Entities)
{
ConfigurationParameters[configuration.ParameterKey] = configuration.ParameterValue;
}
};
}
private IDictionary<string, string> ConfigurationParameters { get; set; }
public string this[string key]
{
get
{
return ConfigurationParameters[key];
}
}
}
ここで、Unityを使用してリポジトリのこのインスタンスをIValueConverterインスタンスに挿入したいと思います...
App.xaml.cs:
private void RegisterTypes()
{
_container = new UnityContainer();
IConfigurationsRepository configurationsRepository = new ConfigurationRepository();
_container.RegisterInstance<IConfigurationsRepository>(configurationsRepository);
}
IValueConverter:
public class SomeValueToBrushConverter : IValueConverter
{
[Dependency]
private ConfigurationRepository ConfigurationRepository { get; set; }
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
switch ((SomeValue)value)
{
case SomeValue.Occupied:
return new SolidColorBrush(ConfigurationRepository[OccupiedColor]);
default:
throw new ArgumentException();
}
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
問題は、コンバーターインスタンスで同じUnity-Containerを取得できないことです(つまり、リポジトリが登録されていません)。