Quick Search

Docs

The QuickSearch adds a search text box to the toolbar adjacent to the Search button. The QuickSearch feature is simple to use and creates an easy way to search against multiple text columns giving users the best chance of finding the records they are looking for. Simply type your search criteria into the box and the search is actioned automatically when you stop typing.

Razor
                                
                                        
DbNetEditCore customersEdit = new DbNetEditCore("northwind", "customers")
{
    QuickSearch = true
};
customersEdit.Column(new string[] { "CompanyName","City","Region"}).Browse();
@customersEdit.Render()