Partial class across projects is NOT ALLOWED
Well, you learn something new everyday and today I found out that you can’t have a partial class that spans across projects in C#, i.e. if I have a partial class called MyClass in ProjectA: 1: namespace ProjectA.Entities 2: { 3: public partial class MyClass { } 4: } 5: I won’t be able to …