Adding an interface to a partial class

前端 未结 3 651
抹茶落季
抹茶落季 2020-12-31 08:05

I have a class that is generated by a third party tool:

public partial class CloudDataContext : DbContext 
{
    // ...SNIPPED... 
    public DbSet

        
3条回答
  •  情深已故
    2020-12-31 08:49

    IN my Case problem was that interface Method that was implemented in other part of the partial class was not compiling and C# was giving error of not implemented Method

提交回复
热议问题