Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joebuschmann/1c12785b58e305ee3c97e9b3c51c7235 to your computer and use it in GitHub Desktop.
Save joebuschmann/1c12785b58e305ee3c97e9b3c51c7235 to your computer and use it in GitHub Desktop.
public class Address
{
[TableAliases("Street")]
public string Line1 { get; set; }
[TableAliases("Township", "Village", "Municipality")]
public string City { get; set; }
[TableAliases("Province")]
public string State { get; set; }
[TableAliases("Zip", "Zip\\s*Code", "Postal\\s*Code")]
public string Zipcode { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment