This illustration will show you how to check if an entity can participate in many-to-many (N:N) relationships in Microsoft Dynamics CRM 2011 using VB.NET.
Ok, here is what the code looks like once your service is instantiated!
In VB.NET
In VB.NET
Dim req As New CanManyToManyRequest
req.EntityName = "account"
Dim resp As CanManyToManyResponse = DirectCast(service.Execute(req), CanManyToManyResponse)
Thats all there is to it!
-
-
No comments:
Post a Comment