我正在使用 JSON 为我的 iOS 应用程序创建一些服务(我仍然是那个洞服务故事的菜鸟)我的问题:
是否有可能使用 Linq 选择所有内容,比如在 SQL 中使用 * ?
我已经有了 where 子句,所以我在漏洞故事中付出了一些努力
[DataContract]
public class PublicVacationCalendarEntry
{
[DataMember]
public string Description { get; set; }
[DataMember]
public DateTime FromDate { get; set; }
[DataMember]
public DateTime ToDate { get; set; }
}
[DataContract]
public class PublicVacationCalenderEntryList
{
[DataMember]
public List<PublicVacationCalendarEntry> PVEntries { get; set; }
}
}
对不起,我在这个例子中发布了错误的代码,对不起,对不起,我没有类似 userId 的东西
可能只是一些简单的改变吗?
感谢您的帮助和快速答复!