UsersDataContext C# to VB

slen

New member
Joined
Feb 12, 2009
Messages
3
Programming Experience
Beginner
In C# there is an object, UsersDataContext, and I would like to use it in VB.NET. Is there anyway to get the similar object in the VB?

Also. how do I import or reference the DAL packages?

Thank You
 
There is no such class in the .NET Framework. That would be a class that has been generated by the IDE in a specific project. The VB IDE will generate the same class under the same circumstances.

Exactly what "DAL packages" are you referring to? You reference any and all DLLs the same way: by adding them on the References property page.
 
Back
Top