我的环境:vs2012,C#
public static IList GetList()
{
using (var ctx = new ProductCatalogEntities(Constants.EfConnectionString))
{
return (from c in ctx.Products
select new
{
ProductId = c.ProductId
,
Name = c.Name
,
Code = c.Code
,
Price = c.Price
}).ToList();
}
}
这个方法填充了我的第一个xtragrid,当我选择一些行时,我想点击一个按钮来填充我的第二个xtragrid与那些选定的行,请问如何实现这个?