Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Remote Data Access with Web Services
Message
Information générale
Forum:
ASP.NET
Catégorie:
The Mere Mortals .NET Framework
Divers
Thread ID:
01272554
Message ID:
01273494
Vues:
25
Kevin,

Thanks again for your help on this. For anyone interested - the fix to get the GetAllEntities() working in a "webservice" mode for Remote Data Access all that needed to be added was this.UpdateSelectStatement = "stored_procedure"; to the Business Object constructor.. for example:

Shipper.cs
(Shipper() constructor):
		public Shipper()
		{
			this.TableName = "Shippers";
			this.PrimaryKey = "ShipperID";
			this.HookConstructor();
			this.EntityCentric = true;
                        // Added to Fix GetAllEntities();
                        this.UpdateSelectStatement = "dbo.ShippersSelect";
		}
Otherwise the UpdateSelectStatement was coming back as NULL and no data was being pulled.

DRI

>Shawn,
>
>>UPDATE:
>>Debugging the code we noticed the following is happening when runnin in Web Service mode.
>
>I'd like to take a look at this first hand. I'll contact you via private e-mail to set up a time.
>
>Best Regards,
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform