目前分類:程式技巧 (2)

瀏覽方式: 標題列表 簡短摘要
http://weblogs.sqlteam.com/davidm/archive/2004/01/20/748.aspx
DataTable Relational Operators in C# - JOIN Method
This JOIN method is equivalent to the TSQL INNER JOIN expression using equality.
This method returns all columns from both tables.
Once again, column name collision is avoided by appending "_Second" to the columns affected.

sophieProfession 發表在 痞客邦 留言(0) 人氣()

Dim dt As DataTable = CType(ObjFundMenu.Select(), DataView).ToTable()
dt.Columns.Add("Url", Type.GetType("System.String"))
Dim url As String = GoPage & "?FundID="

url.Replace("~", "..\")

sophieProfession 發表在 痞客邦 留言(0) 人氣()