Dynamic entity in EF1/change model in runtime/add property dynamicaly

前端 未结 2 1874
感动是毒
感动是毒 2021-01-21 23:38

I want to give users the possibility to dynamically add new columns at the runtime. I am using the Entity framework v1 ...

I did manage to read as xml and then change ss

2条回答
  •  执笔经年
    2021-01-21 23:48

    Changing the Entity Model CSDL/SSDL will not change the types, because they are used to generate the types at design time. I don't think there is any practical way to modify those types at runtime to reflect your changes to the model.

提交回复
热议问题