Make .Net class to partial classes
Make .Net classes to partial classes so we can take it to the next level like putting MVC validations or making new constractors to help us with the missing enums, etc.
thanks in advance
2
votes
IActionman
shared this idea
-
Matthew Steeples commented
Unfortunately this wouldn't make a difference as you can't spread partial classes across different assemblies. An alternative to this would be to maybe extend the functionality with metadata classes or inherit from the base classes and then make sure these are always used.