Reputation: 23811
I'm pretty new to Breeze js. I read throw their documentation and tutorials.But couldn't really understand how to call a web service using Breezejs. I have written my web service using C# asp.net. Any useful links which explain this would be appreciated.
Here is the Web Service Method
[WebMethod]
public Hello HelloWorld()
{
Hello helloObj = new Hello();
helloObj.FirstName = "Hello";
helloObj.LastName = "World";
return helloObj;
}
Upvotes: 0
Views: 210
Reputation: 4487
I am also pretty new to Breeze, and was able to learn the basics really quickly through courses on Pluralsight. If you want to accelerate your learning curve, this is a route I'd really recommend.
Upvotes: 1