Register Login

How can we create an XSODATA service which only allows to read data?

Updated May 18, 2018

How can we create an XSODATA service which only allows to read data but prevents any INSERT/ UPDATE/ DELETE operation?


Comments

  • 10 Aug 2016 2:43 pm Guest Best Answer

    You can forbid CRUD operations individually.

    In your case, you can try this.

    service  {  

    TableName as "entityName"
          create forbidden
          update forbidden
          delete forbidden;

    }


×