本文介绍了如何使用Linq将数据绑定到infragastics的xamGrid?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个infragastics的xamGrid,但我不知道使用linq绑定数据。该项目是一个silverlight应用程序。我基于VatTu.edmx连接到我的WCF数据服务(ADO.NET实体数据模型)在xamGrid中,我创建了2个带有headertext的列:ID和MainPage.xaml.cs中的名称:
I have an xamGrid of infragastics but i have no idea binding data using linq. The project is a silverlight application. my connected to my WCF data service based on VatTu.edmx (ADO.NET Entity Data Model) In xamGrid, i create 2 columns with headertext:ID and Name In MainPage.xaml.cs:
namespace SilverlightApplication12
{
public partial class MainPage : UserControl
{
private VattuEntities db;
private DataServiceCollection<VatTu> vts;
public MainPage()
{
db = new VattuEntities(new Uri("http://localhost:43664/VatTuService.svc"));
InitializeComponent();
}
private void UserControl_Loaded(object sender, RoutedEventArgs e)
{
var q= from vt in db.VatTus select vt;
vts.LoadAsync(q);
grid.itemsource=vts;
}
}}
vt有2个属性:ID和名称。但页面总是加载100%,从不显示我设计的页面。请帮我。抱歉我的英语不好。
"vt" have 2 properties: ID and name. But the page always load 100% and never show my designed page. Please help me. Sorry for my bad English.
推荐答案
这篇关于如何使用Linq将数据绑定到infragastics的xamGrid?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!