In ADF, you can create a 'Copy Activity' to transfer your blob data into the SQL server directly. Please configure the source dataset as CSV 'DelimitedText' (Think JSON file content as csv data with 1 row and 1 column) and Sink dataset as Azure SQL Database Connector. You can load hundreds of JSON from Azure blob to a Azure SQL table having a field with size NVARCHAR(MAX).
Define the mapping for 1 source (i.e. JSON) column. You can also add custom fields in Copy activity Source and do it mapping here too.
Create another 'Stored Procedure Activity' to parse JSON stored in SQL table.
Source:

Source Dataset:

Sink:

Mapping:

'stg' table to save should look like this.
CREATE TABLE [dbo].[stgSalesInvoice](
[id] [int] IDENTITY(1,1) NOT NULL,
[JsonData] [nvarchar](max) NULL
) ON [PRIMARY]
GO
The stored procedure to parse JSON in Target Azure Sql table will look like this for a sample nested json. Not attaching the json file but below shows how easily you can parse nested json.
CREATE PROCEDURE [dbo].[pLoadSalesInvoice]
AS
BEGIN
DECLARE @Jsons nVARCHAR(MAX);
DECLARE @mPartitionKey VARCHAR(20) ;
DECLARE @mFileName VARCHAR(1000) ;
DECLARE @JsonTotalFilesCount INT = (SELECT COUNT(*) FROM [dbo].[stgSalesInvoice]);
DECLARE @JsonLoopCount INT = 1;
TRUNCATE TABLE [dbo].[SalesInvoice]
WHILE @JsonLoopCount <= @JsonTotalFilesCount
BEGIN
SELECT @Jsons = JsonData FROM [dbo].[stgSalesInvoice] WHERE id = @JsonLoopCount;
--Target Azure Sql Table
INSERT INTO [dbo].[SalesInvoice]
([SalesInvoiceId]
,[invoiceNo]
,[transactionId]
,[supplierId]
,[vendorSupplierId]
,[vendorNoExt]
,[vendorDate]
,[biddingId]
,[description]
,[biddingDimensionId]
,[biddingItemDimensionValueId]
)
SELECT [SalesInvoiceId]
,[invoiceNo]
,[transactionId]
,[supplierId]
,[vendorSupplierId]
,[vendorNoExt]
,[vendorDate]
,[biddingId]
,[description]
,[biddingDimensionId]
,[biddingItemDimensionValueId]
FROM OPENJSON(@Jsons) WITH (
SalesInvoice NVARCHAR(MAX) '$.SalesInvoice' AS JSON
,supplier NVARCHAR(MAX) '$.supplier' AS JSON
,vendor NVARCHAR(MAX) '$.vendor' AS JSON
,bidding NVARCHAR(MAX) '$.bidding' AS JSON
)
OUTER APPLY OPENJSON(SalesInvoice) WITH (
[SalesInvoiceId] NVARCHAR(100) '$.id'
,[invoiceNo] NVARCHAR(100) '$.invoiceNo'
,[transactionId] NVARCHAR(100) '$.transactionId'
)
OUTER APPLY OPENJSON(supplier) WITH (
[supplierId] NVARCHAR(100) '$.id'
,[vendorSupplierId] NVARCHAR(100) '$.vendorSupplierId'
)
OUTER APPLY OPENJSON(vendor) WITH (
[vendorNoExt] NVARCHAR(100) '$.vendorNoExt'
,[vendorDate] datetime2(7) '$.vendorDate'
)
OUTER APPLY OPENJSON(bidding) WITH (items NVARCHAR(MAX) '$.items' AS JSON)
OUTER APPLY OPENJSON(items) WITH (
[biddingId] NVARCHAR(100) '$.biddingId',
[description] NVARCHAR(250) '$.description',
biddingItemDimensionValues NVARCHAR(MAX) '$.biddingItemDimensionValues' AS JSON
)
OUTER APPLY OPENJSON(biddingItemDimensionValues) WITH (
[biddingDimensionId] NVARCHAR(100) '$.biddingDimensionId'
,[biddingItemDimensionValueId] NVARCHAR(100) '$.biddingItemDimensionValueId'
);
SET @JsonLoopCount = @JsonLoopCount + 1
END
SELECT 1;
END