Script() 공개 메소드

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