one of my entities contains a collection of objects i would like to persist to a binary column in the database and get populated on fetching.开发者_运维知识库 is this supported with EF or do i need to manually handle this in my repository?
You would need to manually serialize the collection yourself and then store the serialized data in a binary format.
精彩评论