I am into the process of evaluating either I should use Breeze.js in my project. I understand that Breeze uses some kind of linq-esque language to send queries to the server and then to the database. Does Breeze.js allow the alternative use of plain old sql? example:
var plain_old_query = EntityQuery.from_plain_old_query('select * from customers where bla bla bla');
manager.executePlainOldQuery(plain_old_query)
In fact the main reason I would like to know if Breeze support this feature is that I will have some very complex queries to make, some very complex whereclause to build. And figuring it out how to build these queries with their linq-esque language -for the moment - would cost a precious time I do not have. Also I would like to know if Breeze.js can work with WCF because most of the examples I have been looking at these fews days are also exclusively with Web API. (In our project we are already making heavy use of WCF). Thank to the community