Current, converting c# BitArray to byte[] then save to SQL Server. Is there any way to save it directly?
var byteArray = new byte[625];
bitArray.CopyTo(byteArray, 0);
Save(byteArray);
As reading from Binary to BitArray, using byte[] to receive the value and then converting to BitArray. Any way direct?