Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CompatibilityValidator/CompatibilityValidator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ internal static class Program
"]." +
AttributeNames.PostalCode;

// emails[type eq "Work" and Primary eq true]
// emails[type eq "Work" and Primary eq true].value
public const string PathExpressionPrimaryWorkElectronicMailAddress =
AttributeNames.ElectronicMailAddresses +
"[" + AttributeNames.Type +
" eq \"" +
ElectronicMailAddress.Work +
"\" and " +
AttributeNames.Primary +
" eq true]";
" eq true].value";

private static readonly Lazy<JavaScriptSerializer> Serializer =
new Lazy<JavaScriptSerializer>(
Expand Down