using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Church.Net.Entity { public class AddressInfo { [Key] public string Id { get; set; } public string Address { get; set; } public string City { get; set; } public string State { get; set; } public string Zip { get; set; } } }