Mercurial > pub > bltoolkit
view Demo/Partial.Trust/Asp.Net/Default.aspx.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using System.Linq; using System.Web.UI; using BLToolkit.Data; using BLToolkit.Data.Linq; namespace Partial.Trust.Asp.Net { using Components; public partial class _Default : Page { protected void Page_Load(object sender, EventArgs e) { var da = PersonDataAccessor.CreateInstance(); var list = da.GetPersonList(); Label1.Text = list[0].ContactName; var q = from c in new Table<Customers>() where c.CustomerID == list[0].CustomerID select c.ContactName; Label2.Text = q.First(); using (var db = new DbManager()) Label3.Text = _compiledQuery(db, list[0].CustomerID).ToList().First(); } static readonly Func<DbManager,string,IQueryable<string>> _compiledQuery = CompiledQuery.Compile((DbManager db, string id) => from c in db.GetTable<Customers>() where c.CustomerID == id select c.ContactName); } }