Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 309 Bytes

File metadata and controls

19 lines (12 loc) · 309 Bytes

GCop 304

"Property named {ParameterName}Id should be used instead"

Rule description

...

Example

 var addresses = myCollection.Where(mc => mc.Country == null).ToList();

should be 🡻

 var addresses = myCollection.Where(mc => mc.CountryId == null).ToList();