Dilshod Komilov
Dilshod Komilov
I updated VS 2019 to 16.9.4 version. Sometimes I am getting three errors on rebuilding solution: ``` Could not copy the file deps.json because it was not found. Microsoft.Common.CurrentVersion.targets 4919...
I am using OData. And I have lots of scenarios in that I need to do a filter using relative date. ### Assemblies affected It is related to all versions...
I was using _ character in .net. I am trying to migrate to .Net Core. But getting an error on putting _ to ODataRoute ### Assemblies affected I am using...
I was using ODataRoute with a template in .Net. I was working fine. Now, I am trying to migrate to .Net Core, but it is not working. ### Assemblies affected...
### Issues This pull request fixes issue #2557. ### Description Adding constructor param on generic SelectExpandWrapper class for setting instance of resource ### Checklist (Uncheck if it is not completed)...
I am getting metadata in JSON format, But there are $ characters and properties that are not a collection. Also, I want add new attributes and it is not in...
I am trying to round decimal property using Scale, but it is not working ### Assemblies affected Microsoft.AspNetCore.OData 7.4.1 ### Reproduce steps Create an entity: ``` public class Student {...
I am getting this expection on $apply query: System.InvalidOperationException HResult=0x80131509 Message=Processing of the LINQ expression 'GroupByShaperExpression: KeySelector: new NoGroupByWrapper(), ElementSelector:EntityShaperExpression: EntityType: Student ValueBufferExpression: ProjectionBindingExpression: EmptyProjectionMember IsNullable: False ' by 'RelationalProjectionBindingExpressionVisitor'...
I am having problem with a dynamic properties. It looks like it is not working with multiple inheritance. OData is not seeing dynamic properties from the base class. ### Assemblies...
I have Get action in controller: ``` public IActionResult Get(ODataQueryOptions queryOptions, CancellationToken cancellationToken) { var query = MyDBContext.Set().ToList(); return Ok(query); } ``` When I send this query: Student?$apply=aggregate($count as OrderCount)...