You should be able to just do the change. And every time that you
load / save a Part, it will update the value from int to string.
There shouldn't be anything else that you need to do.
On Nov 16, 7:07 pm, EisenbergEffect <
r...@bluespireconsulting.com>
wrote:
> I have some data in production that is being stored as an int. I need to
> change the property type to a string. Is there any problem in doing this?
> Can I just change it on my class and have it work when I deploy? Or is
> there a more manual migration step that has to happen? Here's a concrete
> example of the before and after I need to manage:
>
> Before:
>
> public class Part {
> public int Value { get; set; }
> public int? Sides { get; set; }
> public string Tag { get; set; }
> }
>
> After:
>
> public class Part {
> public int Value { get; set; }
> public string Sides { get; set; }
> public string Tag { get; set; }
> }