comminity-data-odata-linq icon indicating copy to clipboard operation
comminity-data-odata-linq copied to clipboard

Use OData filter text query in linq expresson for any IQuerable without ASP.NET dependency. Support netstandard2.0

Results 17 comminity-data-odata-linq issues
Sort by recently updated
recently updated
newest added

sample filter: Param in (0,100) throws exception: "ExceptionType": "System.NotImplementedException", "StackTrace": " w Microsoft.OData.UriParser.QueryNodeVisitor`1.Visit(InNode nodeIn)\r\n w Microsoft.OData.UriParser.InNode.Accept[T](QueryNodeVisitor`1 visitor)\r\n w Community.OData.Linq.OData.Query.ParameterAliasNodeTranslator.Visit(ConvertNode nodeIn)\r\n w Microsoft.OData.UriParser.ConvertNode.Accept[T](QueryNodeVisitor`1 visitor)\r\n w Community.OData.Linq.OData.Query.ParameterAliasNodeTranslator.Visit(BinaryOperatorNode nodeIn)\r\n w Microsoft.OData.UriParser.BinaryOperatorNode.Accept[T](QueryNodeVisitor`1 visitor)\r\n w...

Bumps [Microsoft.AspNetCore.Mvc.Core](https://github.com/aspnet/Mvc) from 2.0.0 to 2.0.1. Release notes Sourced from Microsoft.AspNetCore.Mvc.Core's releases. 2.0.1 Bugs Fixed Microsoft Security Advisory CVE-2017-11879: Open Redirect can cause Elevation Of Privilege (#7053) Port fix for...

dependencies

Microsoft.AspNetCore.OData 8.0.0+ actually [has no dependencies](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/8.0.0#dependencies-body-tab) on WebAPI, which is one of the motivators of the project. (The naming, I presume, is just for legacy purposes). That being said, the...

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 10.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 10.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Hi, I recently migrated a project to .NET6 and started to use DateOnly type introduced with it. This caused an exception when used with this library because these new types...

Hi there, We are working with an EF (6.2) generated model and using Community.OData.Linq. When try to query we are getting an exception: > _The complex type 'D_Geography' has a...

I am using `MongoDB.Driver` and trying to apply OData to the `IMongoCollection.AsQueryable()` ``` var items = myCollection.Query().OData().Filter("((contains(Name,'2021')))").ToList(); ``` But I am getting this exception ``` System.InvalidOperationException: 'The entity 'IncomingFileTransaction' does...

When I specify property name in select it throws the following exception ``` Could not create an instance of type Community.OData.Linq.OData.Query.Expressions.PropertyContainer. Type is an interface or abstract class and cannot...

Hi Ihar, I've been testing the filter inside the expand and for my use case i can't get it work. It seem that the $filter string is being bypased on...