我很欣赏你关于如何在下一条指令的同一行上排序的指示。
非常感谢!
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");
}
}