ASP.NET MVC コントロールヘルプ
サーバー側処理
コントロールの使用 > CollectionView > CollectionViewの使用 > サーバー側処理

On the server, CollectionView internally handles sorting, paging, filtering requests by data bound controls. In addition, it provides the server-side CollectionViewHelper class, which is a service that enables collections to have reading, editing, filtering, grouping and sorting ability, similar to .Net ICollectionView. Furthermore, it allows you to perform CRUD operations and BatchEdit actions as well.

このセクションは、ASP.NET MVC コントロールの使用を開始するにあたって役立つ情報の提供を目的としています。

一括更新
Learn how to define BatchEdit request in controller to update multiple items at a time.
作成
Learn how to perform create operation in a databound control.
削除
Learn how to perform delete operation in a databound control.
サーバー読み取りの無効化
Learn how to disable server reading for Paging operation in a databound control.
編集
Learn how to enable editing and updating records in a databound control.
複数コントロールのデータ連結
Learn how to bind multiple databound control using CollectionView.
読み取り
Learn how to use a Read request to retrieve data from the collection.