Servicestack ormlite window functions
问题 I am using version 4.5.14 of Servicestack ormlite Following are my domain classes public class Network { [PrimaryKey] public string Id { get; set; } public string Name { get; set; } [CustomSelect("NULL")] public bool? InMaintenance { get; set; } } public class NetworkMain { [PrimaryKey] public string Id { get; set; } [ForeignKey(typeof(Network))] public string NetworkId { get; set; } public DateTime? EndDate { get; set; } } 1 network may have 1 or NetworkMain records. here InMaintenance is