我的环境: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,请问如何实现?