且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在 LINQ 中将字符串转换为日期时间值

更新时间:2023-02-03 08:33:48

通过 AsEnumerable 在本地而不是在数据库中进行解析可能是值得的:

It's probably worth just doing the parsing locally instead of in the database, via AsEnumerable:

var query = db.tb1.Select(tb => tb.dt)
                  .AsEnumerable() // Do the rest of the processing locally
                  .Select(x => DateTime.ParseExact(x, "yyyyMMdd",
                                                CultureInfo.InvariantCulture));

初始选择是为了确保只获取相关列,而不是整个实体(仅对于其中大部分将被丢弃).我也避免使用匿名类型,因为这里似乎没有意义.

The initial select is to ensure that only the relevant column is fetched, rather than the whole entity (only for most of it to be discarded). I've also avoided using an anonymous type as there seems to be no point to it here.

顺便说一下,请注意我是如何指定不变文化的 - 您几乎肯定不想只想使用当前文化.我更改了用于解析的模式,因为听起来您的 source 数据采用 yyyyMMdd 格式.

Note how I've specified the invariant culture by the way - you almost certainly don't want to just use the current culture. And I've changed the pattern used for parsing, as it sounds like your source data is in yyyyMMdd format.

当然,如果可能的话,您应该更改数据库架构以将日期值存储在基于日期的列中,而不是作为文本.

Of course, if at all possible you should change the database schema to store date values in a date-based column, rather than as text.