次の命令を同じ行でソートする方法についてのご指摘に感謝します。
どうもありがとうございました!
this.ProductosUnicos = this.repository.TemperatureReports.AsEnumerable().Select(tt => tt.Producto).Distinct().ToList();
public List<String> ProductosUnicos
{
get
{
return this._productosunicos;
}
private set
{
if (this._productosunicos == value)
return;
this._productosunicos = value;
this.OnPropertyChanged("ProductosUnicos");
}
}