Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Easy Access to Typed Datasets
Message
De
05/05/2005 09:04:59
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
The Mere Mortals .NET Framework
Titre:
Easy Access to Typed Datasets
Versions des environnements
Environment:
VB.NET 1.1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01011252
Message ID:
01011252
Vues:
50
I get the following syntax error when I created this wrapper method in my Bus Obj for GetCurrentDataSet that casts the generic DataSet to the strongly typed DataSets as written in the Dev Guide:
GetDataSet shadows an overloadable member declared in the base class 'mmBusinessObject'. If you want to overload the base method this method must be declared 'Overloads'.

Shouldn't the example (VB.NET) be coded as:

' Wrapper method for GetCurrentDataSet that casts the DataSet to EmployeeDataSet
Public Overloads Function GetDataSet() As EmployeeDataSet
Return CType(Me.GetCurrentDataSet(), EmployeeDataSet)
End Function

Rather than:

' Wrapper method for GetCurrentDataSet that casts the DataSet to EmployeeDataSet
Public Function GetDataSet() As EmployeeDataSet
Return CType(Me.GetCurrentDataSet(), EmployeeDataSet)
End Function
THANKS
Joe Salvatore, Programmer/Analyst - The Stellar Group
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform