Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的公司想使用 Microsoft ProClarity,因为我是 BI 新手,我不知道如何回答这些问题:
请帮助我。
我一直在开发一个网页,允许用户根据几个过滤器/标准在数据库中搜索项目。其中一项要求是能够将此数据导出到电子表格 (excel) 中。到目前为止,我已经使用 CSV 文件创建了一个非常简单的方法。
//get model... StringWriter sw = new StringWriter(); //First line for column names sw.WriteLine("col1,col2,col3")