Created
October 17, 2012 14:59
-
-
Save thePunderWoman/3905995 to your computer and use it in GitHub Desktop.
List Comparison
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vehicle = (from ve in db2.vcdb_Vehicles | |
where ve.VehicleConfig.VehicleConfigAttributes.Count.Equals(vehicleAttribs.Count) | |
&& ve.VehicleConfig.VehicleConfigAttributes.All(p => attrIDs.Contains(p.AttributeID)) | |
select ve).First<vcdb_Vehicle>(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment