'Data' is ambiguous, imported from the namespaces or types 'system, DotNetNuke'.
The error message shows when I'm building a simple search DNN Module. The error is on every 'Data'. Any other options that I can use instead of 'Data'? Part of my code is like this,
Private Function search(ByVal SearchArgs As SearchInput) As Data.DataSet
Dim cmd As New Data.SqlClient.SqlCommand
Dim ConnectionString As String = "Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True"
Dim con As New Data.SqlClient.SqlConnection(ConnectionString.ToString)
Dim ds As New Data.DataSet