ajj7060

Results 5 comments of ajj7060

FWIW, when we're uniting testing our business classes, as assume Csla will do the right thing. We're already configuring a mock container as part of test initialization, and that mock...

@rockfordlhotka If you want to avoid the breaking change then perhaps only accepting a param array and then if there's one and only one argument check to see if its...

@Chicagoan2016 1. Yes, this is the only way you'll get the app to work. If you want the app to work even if they are not on your internal network,...

I don't think this is a good idea, personally. I like Csla because it helps encourage good OO design, but making something public just to get rid of a warning...

Your result property is not a Csla managed property; it should be: ``` public static readonly PropertyInfo ResultProperty = RegisterProperty(nameof(Result)); public bool Result { get => ReadProperty(ResultProperty); private set =>...