I am using LLBLGen Pro v 4.0 Final July 18th Build. I would like to use LLBLGen Pro Runtime Framework for this project.
What I am attempting to do is define a model using ODataModelBuilder for my exposed entities using a WebApi (EntitySetController).
In order to define this model, I have to do something like this:
ODataModelBuilder modelBuilder = new ODataConventionModelBuilder();
modelBuilder.EntitySet<AssetEntity>("Assets");
modelBuilder.EntitySet<AssetTypeEntity>("AssetTypes");
I would like to wire up these entities to webapi controllers (EntitySetContoller) so that they can be exposed and consumed by a AngularJS Client.
I am not sure if this is possible. Any help would be greatly appreciated.