Ticket T1044300
Visible to All Users

WebAPI Middle Tier Direct SQL

created 3 years ago

I am trying to figure out how to enable direct SQL queries when using the Web API Middle Tier server. I have seen This KB article, but it doesn't appear to have been updated to account for the Web API.
Thank you

Answers approved by DevExpress Support

created 3 years ago

Hello Eldon,

You can use the MiddleTierSerializableObjectLayer constructor to specify the AllowICommandChannelDoWithSecurityContext option value. Find the following code in the WebApo.Startup.cs file:

C#
services.AddScoped<IMiddleTierSerializableObjectLayer>(sp => { var dataLayerAccessor = sp.GetRequiredService<MiddleTierDataLayerAccessor>(); var dataServerSecurity = sp.GetRequiredService<IDataServerSecurity>(); ISelectDataSecurity selectDataSecurity = dataServerSecurity.CreateSelectDataSecurity(); Session session = new UnitOfWork(dataLayerAccessor.GetDataLayer(sp)); return new MiddleTierSerializableObjectLayer(session, () => selectDataSecurity, false); });

and change it as shown below:

C#
services.AddScoped<IMiddleTierSerializableObjectLayer>(sp => { var dataLayerAccessor = sp.GetRequiredService<MiddleTierDataLayerAccessor>(); var dataServerSecurity = sp.GetRequiredService<IDataServerSecurity>(); ISelectDataSecurity selectDataSecurity = dataServerSecurity.CreateSelectDataSecurity(); Session session = new UnitOfWork(dataLayerAccessor.GetDataLayer(sp)); return new MiddleTierSerializableObjectLayer(session, () => selectDataSecurity, true); });

    Other Answers

    created 3 years ago

    Hello,

    In new versions of XAF v22.1, you can use an option in DataServerSecurity settings to enable direct SQL queries.
    Check this help topic: Enable Direct SQL Queries in the Middle-Tier Server (ASP.NET Core Web API, .NET 6+).

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.