-
Notifications
You must be signed in to change notification settings - Fork 63
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
Using Breeze in Core web application targeting Full Framework #45
Comments
Would love to know if you fixed this? |
Sorry, still no solution for this. I went on with a classic full framework API. Would still be nice if dot net Core support was added though... |
@steveschmitt @wardbell @jtraband Any recommendation and/or guidance on the path forward? |
looking into this now. The problem is that asp.net core does not yet have OData support. So we are in the process of rewriting the breeze .net server to also support our json query format. This will occur at the same time as a rewrite to support asp.net core. This has the further advantage of decoupling the breeze .net server implementation from OData while still allowing full support for server side EF and full client side queries. |
Any update on above? |
It's working now, please follow this issue: Breeze/breeze.js#178 (comment) |
Dear breeze folks,
The beautiful breeze technology seems to be losing some momentum, but I think it can still add great value in this age of browser oriented application development. A vital step for survival is certainly support for the new .NET Core stack.
Since Entity Framework Core is not yet complete, any serious application needs EF6 anyway. So for starters we might as well use a Core web application targeting the Full Framework.
When I try to add Breeze, a number of things work, some do not. This is what I tried:
Override the default context provider to create the DbContext with a connectionstring (should be placed in setting later on)
In Startup.cs
In project.json
Finally a Breeze controller
The metadata is produced OK, and /breeze/persons produces json with Persons.
The problem is that all of the query string parameters like
$filter
,$top
etc seem to be ignored. It seems as something goes wrong with the translation to the Odata layer.Maybe this just a dead end and I should wait for the final porting, but I have the impression that is can fixed quite easy?
The text was updated successfully, but these errors were encountered: