Book Image

Learning Kendo UI Web Development

By : John Adams
Book Image

Learning Kendo UI Web Development

By: John Adams

Overview of this book

<p>Creating useful and attractive web sites for today’s audiences requires more JavaScript programming than ever before. JavaScript, however, isn’t easy and staying up to date with recent trends makes it even harder. You need a way to integrate the latest technology into your web site without having to start from the beginning.</p> <p>"Learning Kendo UI Web Development" shows you how to add the latest web features to your site without doing all of the work yourself. The experts at Telerik have created a fully supported code library that lets you focus on what makes your sites special while letting them focus on how that translates into cutting edge JavaScript code.</p> <p>This book will take you on a survey through Kendo UI for the web from the basic widgets that wrap input fields to the full page scaffolding widgets for setting up your site.</p> <p>Kendo UI for the web is a rich framework of JavaScript widgets and tools that will add immediate value to your web sites. Learn the full spectrum of what Kendo UI has to offer in specialized widgets that gather input from users by displaying calendars, sliders, or date pickers all the way up to widgets that structure your web pages through data-driven models in accordions, tabs, list views, and tree views.</p> <p>"Learning Kendo UI Web Development" is the perfect companion for navigating the broad features offered by Telerik in JavaScript web development.</p>
Table of Contents (18 chapters)
Learning Kendo UI Web Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
9
Implementing the Splitter and TreeView Widgets
Index

Getting familiar with Entity Framework Code First


Most applications use a database to store information. Most databases, however, store information in a way that does not exactly match up with server-side object oriented programming. This is a very common problem and has given rise to the field of Object Relational Mapping (ORM) systems. Many of these exist, but Microsoft has created one specific to the .NET framework known as the Entity Framework (EF). It is basically a framework designed to more easily write code that stores information in a database but still behaves like an object oriented system. If you have downloaded the sample content for this chapter, go ahead and open the Chapter 11 solution now to follow along. Otherwise, create a new ASP.NET MVC 4 project and choose the Web API template when asked.

The particulars of the Entity Framework are numerous and there is not enough space here to explore them. We will go through a basic example of how to utilize the Entity Framework Code...