You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by ch...@apache.org on 2015/10/06 13:18:00 UTC

svn commit: r1706993 - /olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext

Author: chrish
Date: Tue Oct  6 11:18:00 2015
New Revision: 1706993

URL: http://svn.apache.org/viewvc?rev=1706993&view=rev
Log:
CMS commit to olingo by chrish

Modified:
    olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext

Modified: olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext?rev=1706993&r1=1706992&r2=1706993&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext Tue Oct  6 11:18:00 2015
@@ -90,11 +90,11 @@ To make this function statically callabl
                          IncludeInServiceDocument="true"/>
     </EntityContainer>
 
-To call such a Function Import the client issues a GET requests to a URL identifying the function import. The parameters are passed using the so called inline parameter syntax. In this simple cases such a call could look like this:
+To call such a Function Import the client issues a GET requests to a URL identifying the function import. The parameters are passed using the so called inline parameter syntax. In this simple case such a call could look like this:
 
     http://host/myService/StaticCalculateVAT(NetPrice=123.00,Country=’US’)
 
-The definition talks about composing of functions. By default every function is Composable=false, that means there must be no further resource parts after the function call and there must also be no system query options. If a function is composable you`re be able to use all system query options, which are allowed on the return type of the function. Further you can navigate to properties and use Navigation Properties to navigate to related entities.
+The definition talks about composing of functions. By default every function is Composable=false, that means there must be no further resource parts after the function call and there must also be no system query options. If a function is composable you`re be able to use system query options. Which options are allowed in particular is based on the return type of the function. Further you can navigate to properties and use Navigation Properties to navigate to related entities as well.
 
 The definition of Actions / Action Imports in metadata document is similar to functions.