LINQ查询以获取Silverlight中的列标题

时间:2011-06-28 19:35:29

标签: c# .net silverlight wcf linq

我正在使用WCF服务处理Silverlight应用程序,我需要从特定表中获取所有列标题。我一直在尝试编写一个LINQ查询来执行此操作,但到目前为止,我还没有能够使其正常工作。我没有找到很多与此相关的信息。我找到了以下信息,但是我在连接数据时遇到了困难。

http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/4856/#ReadAndPostComment

到目前为止,我已经尝试了以下内容......由于DataContext需要一个参数而无法编译,这就是我被卡住的地方。

public List<string> GetColumnHeaders()
{
    DataContext context = new DataContext();
    List<string> columnList = new List<string>();
    var dataModel = context.Mapping;

    foreach (var r in dataModel.GetTables())
    {
        if (r.TableName.Equals("table1", StringComparison.InvariantCultureIgnoreCase))
        {
            foreach (var c in r.RowType.DataMembers)
            {
                columnList.Add(c.MappedName);
            }
        }
    }
    return columnList;
}

而不是使用DataContext context = new DataContext(); 我尝试了以下方法,但我知道问题是一样的。

var dataModel = new AttributeMappingSource()
                 .GetModel(
                      typeof(RepositoryBase<HBS_SondesEntities>
                 ));

2 个答案:

答案 0 :(得分:1)

这是我对解决方案的最佳尝试,很难真正理解你所尝试/写过的内容。

public List<string> GetColumnHeaders(){
  List<string> columnList = new List<string>();
  using (SondesEntities context = new HBS_SondesEntities()){
    foreach (var r in context.Mapping.GetTables()){
       if (r.TableName
             .Equals("table1", StringComparison.InvariantCultureIgnoreCase)) {

           foreach (var c in r.RowType.DataMembers){
               columnList.Add(c.MappedName);
           }
       }
     }
  }
  return columnList;
}

假设我手指不胖,这里的代码是使用linq的相同代码。

public List<string> GetColumnHeaders(){

    List<string> columnList = new List<string>();
    using (SondesEntities context = new HBS_SondesEntities()){
        var query = (
           context.Mapping.GetTables()
             .Where(t=>t.TableName
                        .Equals(
                         "table1", 
                          StringComparison.InvariantCultureIgnoreCase)
                        )
             ).SelectMany(x=>x.RowType.DataMembers);

        columnList  = query.Select(m=>m.MappedName).ToList()
    }
    return columnList;
}

答案 1 :(得分:-1)

这可能会有所帮助:

http://jesseliberty.com/2009/08/13/linq-for-silverlight-developers/

我不确定你的意思是什么,但是如果它是一个数据网格,链接应该有帮助。