-5
我嘗試從文件中獲取文件,其中包含2個日期(FromDate和To date)。如何將我的查詢結果保存爲列表?謝謝你的幫助!如何將我的查詢結果保存爲列表?
public static IEnumerable<String> GetModificationFilesBetweenDates(String searchPath, DateTime fromDate, DateTime toDate)
{
IEnumerable<String> select = (from file in GetAllFilesInPath(searchPath)
where file.ScriptType == SQLFileType.Create
&& file.FromDate >= fromDate
&& file.ToDate <= toDate
select file.FileName);
return select;
}
你的意思運行'ToList()'就可以了? – DavidG
問題不是很清楚,但如果你想保存列表,你可以將它保存在XML文件中。 –
File.WriteAllLines(「output.txt」,GetModificationFilesBetweenDates(...)) – Biscuits