Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MVCDemos.Razor/Models/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MVCDemos.Razor/Models/FishCatalog.cs

using System.Collections;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace DevExpress.Web.Demos {
    public static class FishCatalog {
        public static IEnumerable GetData() {
            using(AccessDataSource dataSource = new AccessDataSource("~/App_Data/Fish.mdb", "SELECT * FROM BioLife"))
                return dataSource.Select(new DataSourceSelectArguments()); 
        }
    }
}