You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by de...@apache.org on 2014/07/01 10:05:02 UTC

svn commit: r1607007 - /olingo/site/trunk/content/doc/tutorials/DeltaQuerySupport.mdtext

Author: deepa
Date: Tue Jul  1 08:05:02 2014
New Revision: 1607007

URL: http://svn.apache.org/r1607007
Log:
CMS commit to olingo by deepa

Modified:
    olingo/site/trunk/content/doc/tutorials/DeltaQuerySupport.mdtext

Modified: olingo/site/trunk/content/doc/tutorials/DeltaQuerySupport.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/tutorials/DeltaQuerySupport.mdtext?rev=1607007&r1=1607006&r2=1607007&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/tutorials/DeltaQuerySupport.mdtext (original)
+++ olingo/site/trunk/content/doc/tutorials/DeltaQuerySupport.mdtext Tue Jul  1 08:05:02 2014
@@ -41,7 +41,7 @@ b. Implement the abstract method `getQue
 		 
 		 Query query = em.createQuery(jpqlStatement);
 		 
-  The JPQLStatement is generated based on the OData request (resultsView). The generated JPQLStatement can be enhanced to introduce conditions that filters and fetches delta JPA Entities. To enhance the JPQLStatement and add a condition to the WHERE Clause, refer to the following code snippet.
+  The `JPQLStatement` is generated based on the OData request (resultsView). The generated `JPQLStatement` can be enhanced to introduce conditions that filters and fetches delta JPA Entities. To enhance the `JPQLStatement` and add a condition to the WHERE Clause, refer to the following code snippet.
 
   *Note*: It is up to the JPA application developers to come up with a logic suitable for their use case.