Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Question] Is this compatble with ASP.NET Core WebApi controllers? #113

Closed
vgb1993 opened this issue Aug 30, 2022 · 2 comments
Closed

[Question] Is this compatble with ASP.NET Core WebApi controllers? #113

vgb1993 opened this issue Aug 30, 2022 · 2 comments
Labels

Comments

@vgb1993
Copy link

vgb1993 commented Aug 30, 2022

All the samples I've seen create a Server using Kestrel, I've also seen the MVC one but that uses DisableEndpointRouting

I wonder, can I use this with my already existing WebApi without opening a new port? I haven't founnd any example with controllers.

Cheers, looks promissing.

@vgb1993 vgb1993 changed the title [Question] Is this compatble with ASP.NET Core WebApi template? [Question] Is this compatble with ASP.NET Core WebApi controllers? Aug 30, 2022
@6bee 6bee added the question label Aug 30, 2022
@6bee
Copy link
Owner

6bee commented Aug 30, 2022

Yes. Sample 24_RemoteQueryable_UsingJsonSerializationOverWebApi and 27_RemoteQueryable_UsingXmlSerializationOverWebApi demontrate the MVC controller case.

[ApiController]
[Route("api")]
public class QueryController : Controller
{
    private InMemoryDataStore DataStore => InMemoryDataStore.Instance;

    [Route("query")]
    public DynamicObject Query([FromBody] Query query)
        => query.Expression.Execute(DataStore.QueryableByTypeProvider);
}

@vgb1993
Copy link
Author

vgb1993 commented Sep 5, 2022

Ohh thanks, I didn’t see this one!

@vgb1993 vgb1993 closed this as completed Sep 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants