namespace IWareDataAccess.EF { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("KEYVALUE")] public partial class KEYVALUE { public int ID { get; set; } [StringLength(50)] public string NAME { get; set; } public int? VALUE { get; set; } } }