I have a Guid List type of varchar(Max). This list has lots of Guid's which cross the sql limit.SO i have break this list in to small list as shown below.
var sublists = customerList
.Select((x, i) => new { Index = i, Value = x })
.GroupBy(x => x.Index / 2000)
.Select(x => x.Select(v => v.Value.ToString()).ToList())
.ToArray();
But this list is coming in char format as shown below.
I am not getting why this is coming in char format. Am I making any mistakes?