Patch and save array of entity

INSERT INTO table_name (column_list)
VALUES
(value_list_1),
(value_list_2),

(value_list_n);

How can I patch and save such data at once not in loop??

@sneha, you need add multiple rows insert into table then you need to just create for each loop, and save that entity.

Look into patchEntities and saveMany.

@Zuluru This is what I wanted. Thanx :+1:

@spadeX. I do not want to save through loop.