I have a class which contains multiple dotnumeric matrices. The matrices contains doubles with a known maximum precision. Each matrix must be saved to a single field in a mssql database.
What is the best practice for doing this?
Since the matrices are dotnumerics classes I do not have control over these, ie. i can't make them implement ISerializable for instance so I guess I have to manually convert the matrices to a string which can be saved, or is there any better solution?
It is more crucial that the conversion is fast than memory efficient.
I'm using EntityFramework as ORM.