Giter Club home page Giter Club logo

Comments (5)

gpproton avatar gpproton commented on July 23, 2024 1

I was able to use fine on dotnet 7 with the new AsParameters which is better for minimal API

Here

group.MapGet("/", async ([FromServices] CategoryService sv, [AsParameters] CategoryFilter filter) => await sv.GetAllAsync(filter))
            .WithName($"GetAll{name}")
            .WithOpenApi();

from autofilterer.

enisn avatar enisn commented on July 23, 2024

It seems it's an AspNetCore binding error. Your value might have some special characters or something that can break the binding

from autofilterer.

gpproton avatar gpproton commented on July 23, 2024

I thought so initially, below is the sample filter used.

// Sample filter
public class GenericFilter : PaginationFilterBase{ }

// Sample DTO
public class SampleDto : FilterBase {
public Guid Id { get; set; }
public string Name { get; set; }
}

from autofilterer.

enisn avatar enisn commented on July 23, 2024

I understand the problem but nothing to do in autofilterer library. Autofilterer generates only LINQ expressions and it doesn't know about your aspnetcore application or how to bind object properties.

There is no aspnetcore dependency of autofilterer.

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageTags>netstandard, EntityFramework, netcore, aspnetcore, auto filter, filtering, sorting, ordering, pagination</PackageTags>
<PackageIconUrl />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>C:\Users\enisn\source\repos\enisn\AutoFilterer\src\AutoFilterer\AutoFilterer.xml</DocumentationFile>
<NoWarn>1701;1702;CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>

You may ask your question at dotnet/aspnetcore repositroy

from autofilterer.

enisn avatar enisn commented on July 23, 2024

Might be similar with dotnet/aspnetcore#40752


Most probably this is the reason
https://stackoverflow.com/questions/70260354/net-6-minimal-api-no-public-static-bool-request-tryparsestring-out-request

from autofilterer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.