这就是交易 我的模型上有一个数组
OnModelCreating
我的观点中有一个textarea
public string[] Estrofes { get; set; }
我想要的是使用空白行作为分隔符来分割TextArea中的内容,并将每个字符串分隔在我的数组中的某个位置
例如......
如果用户输入:
FIRSTLINE
二线 OtherStuffs
ThirdLine Blablabla 等
阵列必须接收......
[FirstLine,SecondLine OtherStuffs,ThirdLine Blablabla Etc]
有一种方法可以通过ModelBiding直接执行此操作吗?