We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 948d2be commit 01753d0Copy full SHA for 01753d0
tests/Unit/Stubs/SMO.cs
@@ -362,6 +362,7 @@ public class Login
362
public bool PasswordExpirationEnabled = false;
363
public bool IsDisabled = false;
364
public string DefaultDatabase;
365
+ public Server Parent;
366
367
public Login( string name )
368
{
@@ -371,11 +372,16 @@ public Login( string name )
371
372
public Login( Server server, string name )
373
374
this.Name = name;
375
+ this.Parent = server;
376
}
377
378
public Login( Object server, string name )
379
380
381
+ if (server is Server)
382
+ {
383
+ this.Parent = (Server)server;
384
+ }
385
386
387
public void Alter()
0 commit comments