I have a string coming from database.
var query = @"Select SKUs from dbo.Order order by OrderDate OFFSET {skip} ROWS FETCH NEXT {take} ROWS ONLY"
This string is coming from database directly, so I dont have this string formed in code. I want to use $ interpolation to replace them
var skip = 0;
var take = 200;
query = $query
Is there any way I can do this? I know I can use replace or string.format but just curious if we can do this.