Reputation: 1
In VS 2015 website, I create datasets in the App_Code
folder, added table adapters and link to stored procedure from SQL Server, which I can still do in VS2022.
In my code behind in VS 2015 (vb.net), I would use something like:
Dim returnCustomersDT as New customerDataset.sp_returnCustomersDataTable
In VS 2022, after I type Dim returnCustomersDT as New
, intellisense doesn't show customerDataset
.
I set the dataset to "Build Action: Compile", but that didn't fix the issue. The datasets are not 'seen' by VS 2022
Upvotes: 0
Views: 113
Reputation: 4067
You haven't shared the structure of your project so this is a shot in the blind, but
customerDataset
class and see if intellisense picks it upNote: I am aware that this might mess-up the references to that class from other parts of your code, but it would help you identify why the customerDataset
isn't picked-up
Upvotes: 0