DataSourceBuilder

Methods

Ajax()

Use it to configure Ajax binding.

Example

Razor
 
            .DataSource(dataSource => dataSource
                    .Ajax()
            )
             

Server()

Use it to configure Server binding.

Example

Razor
 
            .DataSource(dataSource => dataSource
                    .Server()
            )
             

WebApi()

Use it to configure WebApi binding.

Example

Razor
 
            .DataSource(dataSource => dataSource
                    .WebApi()
            )
             

Custom()

Use it to configure Custom binding.

Example

Razor
 
            .DataSource(dataSource => dataSource
                    .Custom()
            )
             

SignalR()

Use it to configure SignalR binding.

Example

Razor
 
            .DataSource(dataSource => dataSource
                    .SignalR()
            )
             
In this article
MethodsAjax()Server()WebApi()Custom()SignalR()
Not finding the help you need?
Contact Support