问题描述
我在我的数据输入程序中使用 EF6.EF 不生成 ObservableCollection 而是生成 HashSet 和 ICollection,所以我必须手动更改它.不幸的是,每次我从数据库更新模型时,每个多对多关系都会回到 ICollection ...
Im using EF6 in my dataentry program. EF does not generates ObservableCollection but HashSet and ICollection instead , so i have to change it manually. Unfortunately every time i Update Model from Database , every Many-Many relation goes back to ICollection ...
推荐答案
将您的 .tt
文件中的 ICollection 和 HashSet 替换为 ObservableCollection.
然后搜索方法public string UsingDirectives
.
在这个方法中应该有一行 includeCollections ?(Environment.NewLine +使用 System.Collections.Generic;"):",
.
仅将 Generic
替换为 ObjectModel
.这将包括正确的命名空间以在您的模型中使用 ObservableCollections.
Replace ICollection and HashSet with ObservableCollection in your .tt
file.
Then search for the method public string UsingDirectives
.
In this method there should be a line includeCollections ? (Environment.NewLine + "using System.Collections.Generic;") : "",
.
Replace only Generic
with ObjectModel
. This will include the correct namespace to use ObservableCollections in your models.
这篇关于实体框架不生成 ObservableCollection的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!