To work with data is an important part of developing an application. A normal application stores data in memory but when this application ends, data is lost. In this case, when you don’t want to lose your data, the .NET framework gives you the interactive way to store your data in a persistent way. This can be achieved by interacting with a database or external web service to insert or retrieve data whenever you require.
In this chapter, we will learn about:
Working with a database
Consuming XML and JSON data
Working with a Web service
Working with a Database
The .NET ...