-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
  • 7,328
  • 15
  • 82
  • 143

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,512
  • 10
  • 9