DA-LION-619
Honorary Master
- Joined
- Aug 22, 2009
- Messages
- 13,777
So using Entity Framework, you can't have something like
Now I've been using a normal string and adding the values separated by a comma, so when I retrieve them I need to do a Split etc...
My question is, which would be faster between my current method and saving the list of values as JSON and serializing/deserializing that.
Code:
public List<string> Whatever {get;set;}
Now I've been using a normal string and adding the values separated by a comma, so when I retrieve them I need to do a Split etc...
My question is, which would be faster between my current method and saving the list of values as JSON and serializing/deserializing that.