是否有阻止mongodb c#驱动程序将在过滤器查询中传递的任何日期转换为UTC而是将日期接受为UTC的方法?
我正在将.net core 2.1与一些telerik控件一起使用以显示网格。在表格标题的内部,我有一个过滤器控件来过滤日期范围。
在过滤之前,在客户端事件中,我正在捕获日期并将其转换为utc:
function onGridFilter(e) {
// check if it is a date field
if (e.filter && e.field === "created"){
convertDateToUTC(e.filter);
}
}
function convertDateToUTC(filter) {
var filters = filter.filters;
for (var i = 0; i < filters.length; i++) {
if (filters[i].field === "created") {
var date = filters[i].value;
var isoDate = new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds());
filter.filters[i].value = isoDate;
}
}
}
在API调用中,我像这样将UTC日期转换为服务器的本地时间(此API是kubernetes微服务,根据部署位置的不同,可以具有不同的时区):
// Update the dates to server times for filtering, mongo will accept dates and convert to UTC based on the server location
foreach (var f in this.Filters)
{
if (f.ConvertedValue.GetType() == typeof(DateTime))
{
DateTime dt = (DateTime)f.Value;
f.Value = dt.ToLocalTime();
}
}
使用telerik过滤器(DataSourceRequest对象)和mongodb c#驱动程序(从linq到mongo),我正在创建一个mongo查询以过滤mongo数据库中的记录。
public DataSourceResult GetCollectionQuery(string organizationId, DataSourceRequest request)
{
IMongoCollection<Case> casesCollection = _db.GetCollection<Case>(_collection);
IMongoCollection<Person> personCollection = _db.GetCollection<Person>(_personCollection);
IQueryable<CaseListViewModel> query;
// Setup full results query
query = (from c in casesCollection.AsQueryable()
where c.OrganizationId == organizationId
join p in personCollection.AsQueryable() on c.ClientId equals p.Id into p
from person in p.DefaultIfEmpty()
select new CaseListViewModel()
{
Id = c.Id,
DisplayName = person != null ? person.LastName + ", " + person.FirstName : string.Empty,
OrganizationCaseId = c.OrganizationCaseId,
ServiceName = c.ServiceName,
ClientType = c.ClientType,
Addresses = c.ClientTypeValue == ClientTypeValue.Person ? person.Addresses != null ?
person.Addresses.Where(o => !o.End.HasValue).Select(o => o.AddressLine1) : null : null,
Worker = string.Empty, //c.Assignments,
Created = c.Created,
Status = c.Status,
OrganizationGeography = person != null ? person.OrganizationGeography != null ? person.OrganizationGeography.Name : string.Empty : string.Empty
});
// Filter/Sort/Page results
return query.ToDataSourceResult(request);
}
我将客户端转换为UTC,将UTC转换为服务器,然后将该日期传递给mongo查询的原因是,因为客户端和服务器可能处于不同的时区。
在网格上过滤日期似乎是很多不必要的工作。目前,该解决方案确实可以使用,但是我正在mongodb c#驱动程序方面寻找替代方案。我希望mongodb查询以UTC读取所有日期,而不是将检索到的日期转换为UTC。
我知道有一种方法可以通过BsonDateTimeOptions DateTimeKind告诉属性将其保存为utc:
[BsonElement(elementName: "created")]
[BsonDateTimeOptions(Kind = DateTimeKind.Utc)]
public DateTime Created { get; set; }
查询是否有类似内容?
更新: 解决方案是指定要过滤的日期的DateTimeKind。
foreach (var f in this.Filters)
{
if (f.ConvertedValue.GetType() == typeof(DateTime))
{
DateTime dt = (DateTime)f.Value;
dt = DateTime.SpecifyKind(dt, DateTimeKind.Utc);
f.Value = dt;
}
}
答案 0 :(得分:1)
我不确定您要问什么,但是我在您的代码中看到了几件事:
在您的客户端代码中,您具有:
var isoDate = new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds());
这是一个常见的反模式,您永远不要这样做。 Date
对象的参数期望以当地时间为单位的值,并且您正在传递以UTC为单位的值。这样做基本上与添加本地时区的UTC偏移量相同。换句话说,它不会将对象转换到不同的时区,而只是选择了不同的时间点。
您可能想做的是date.toISOString()
。这将以ISO 8601格式发出一个基于UTC的字符串,适合发送到服务器。
在服务器端代码中,您具有:
f.Value = dt.ToLocalTime();
这将转换为服务器的本地时区。在大多数情况下,应避免编写依赖于服务器时区设置的代码。而是将输入时间保持在给定的UTC时间。使用UTC进行存储,使用UTC进行查询,然后返回基于UTC的响应。在接收响应的客户端代码中,使用Date
对象或库将其转换回本地时间。
此外,在您的GetCollectionQuery
中,我完全看不到任何与日期或时间有关的内容,因此不确定是否与您的问题有什么关系。
答案 1 :(得分:1)
您可能会这样使用DateTime.SpecifyKind
作为日期:
query = (from c in casesCollection.AsQueryable()
...
select new CaseListViewModel()
{
...
Created = DateTime.SpecifyKind(c.Created, DateTimeKind.Utc)
}
在这种情况下,mongodb驱动程序应将日期解释为utc中已经存在的日期,因此它不会执行转换。