iJade
iJade

Reputation: 23811

How to make a simple web service call using Breeze JS

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

Answers (1)

zpydee
zpydee

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

Related Questions