-1

r => r.Item1 == dFName

Its part of this line

dFName = PropertyUtil.GetName<kUpdate>(r => r.Resolution);
fld2Lup = map.DTField2LookupMap[domType].First(r => r.Item1 == dFName );
asmgx
  • 6,348
  • 12
  • 63
  • 109

1 Answers1

0

That is essentialy..

Return the First item of the "DTField2LookupMap[domType]" collection where the items property "Item1" is equal to dfName

this is a lambda expression: https://msdn.microsoft.com/en-us/library/bb397687.aspx

App Pack
  • 1,432
  • 9
  • 9