Script() public method

Translates this identity into a SQL script
public Script ( ) : string
return string
Example #1
0
 public void Script()
 {
     var test = new Identity(1, 2);
     Assert.Contains("1", test.Script());
     Assert.Contains("2", test.Script());
 }