Returns an
AnonymousProjectionSelector combining this selector with the specified projection selectors.
Syntax
Example
C# | Copy Code |
---|
var entityType = typeof(Customer);
var rootQuery = EntityQuery.Create(entityType, _entityManager);
var pps = ProjectionSelector.Combine(new[]
{ new ProjectionSelector(entityType, "City", "City"),
new ProjectionSelector(entityType, "PostalCode", "PostalCode")
});
var results = rootQuery.Select(pps).Execute(); |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also