在不刷新现有 edmx 的情况下使用企业库插入新创建的 table
Insert into a newly created table using enterprise library without refreshing the existing edmx
情况如下:
我有一个使用 entity framework 创建的现有项目。
现在我必须创建一个新表单并将其数据保存到一个新的 table 使用企业库。
但要注意的是,我必须在不刷新项目现有 edmx 的情况下执行此操作。
当我调用插入查询时,它显示错误:
The type Database cannot be constructed. You must configure the container to supply this value.
请帮忙。
我自己做的。只需要为使用企业库创建一个不同的连接字符串。因为之前的连接字符串也有 entity framework 的 属性,这就是它显示错误的原因。 :)
情况如下:
我有一个使用 entity framework 创建的现有项目。 现在我必须创建一个新表单并将其数据保存到一个新的 table 使用企业库。 但要注意的是,我必须在不刷新项目现有 edmx 的情况下执行此操作。 当我调用插入查询时,它显示错误:
The type Database cannot be constructed. You must configure the container to supply this value.
请帮忙。
我自己做的。只需要为使用企业库创建一个不同的连接字符串。因为之前的连接字符串也有 entity framework 的 属性,这就是它显示错误的原因。 :)