0
我希望能夠通過查找它與我從數據庫中找回的對象列表中的匹配來刷新對象。我可以用反射來做 - 但肯定必須有一種方法來在Where子句中獲取Property Selector。Where子句使用lambda屬性選擇器
這是那種我要打電話的事...
MyObject = GetRefreshedObject(MyObject, RefreshedObjects,() => ID);
但我有點堅持的方法!
public static TE GetRefreshed<TE, P>(TE entity, IEnumerable<TE> refreshed, Expression<Func<TE, P>> selector) where TE : class
{
if (entity == null) return null;
return refreshed.Where(x => x.[Selector == entity.Selector]).FirstOfDefault();
//The square bracket bits obviously don't work but hopefully show what I'm trying to achieve!
}
你必須選擇適用的對象,就像選擇(x)或諸如此類。 – bzlm
請不要用「c#Lambda」之類的東西加前綴。這就是標籤的用途。 –