namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class TMS_PositionDetails { [Key] public int Details_Id { get; set; } public decimal? Longitude { get; set; } public decimal? Latitude { get; set; } public int? Track_Id { get; set; } [StringLength(50)] public string TrackCode { get; set; } [StringLength(50)] public string TrackType { get; set; } public string ExpandFields { get; set; } } }