public class SchoolInitialzier : System.Data.Entity,
DropCreateDatabaseModelChanges<SchoolContext>
它给了我这些错误:
System.Data.Entity is a namespace but is used like a type.
The type or namespace name DropCreateDatabaseModelChanges could not be found
当你以这种方式继承某些东西时意味着什么?它甚至是正确的吗?为什么MSFT教程告诉我这样做?做正在努力实现的目标的正确方法是什么?
由于
答案 0 :(得分:2)
你有,
逗号
System.Data.Entity.DropCreateDatabaseModelChanges<SchoolContext>
如果您正在实现两个接口,那么您将使用逗号
public class Foo : IIdentity, IKnowsKungFoo