コード例 #1
0
 public static bool Is_5_1_0(this SqlServerVersion version)
 {
     return(version.IsMinimally(5, 1, 0));
 }
コード例 #2
0
 public static bool Is_2008(this SqlServerVersion version)
 {
     return(version.IsMinimally(10, 0, 0));
 }
コード例 #3
0
 public static bool Is_5_0_10(this SqlServerVersion version)
 {
     return(version.IsMinimally(5, 0, 10));
 }