What is Difference between Retrieve VS Retrieverequest in SDK - use Retrieverequest to get related records using single server call
Which method will you apply to get related records of an entity record? Could we get it using service.retrieve? Probably you cannot... It will return single record but you may not get related records. So how do you get it You can utilize Retrieverequest for this purpose. You can pass Relatedentity query as part of retrieve request which will return related entities as part of the response. Let us see some sample if you want one specific incident record with its notes you can get it in a single server call. Retrieve Method Retrieve method used to get specific record by Id C# public override Entity Retrieve ( string entityName, Guid id, ColumnSet columnSet ) Parameters entityName Type: Str...
Comments