Skip to content

Instantly share code, notes, and snippets.

@meyerovb
Created January 28, 2015 22:13
Show Gist options
  • Save meyerovb/505d650d354aba075104 to your computer and use it in GitHub Desktop.
Save meyerovb/505d650d354aba075104 to your computer and use it in GitHub Desktop.
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace PGTest.Models
{
[Table("public.Region")]
public partial class Region
{
[Key]
[StringLength(10)]
public string RegionCode { get; set; }
[Required]
[StringLength(2)]
public string CountryCode { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment