示例#1
0
 public static void Basic(this ChecksConfigurator <Commands.Add.Add> c) => c.Enlist(new AddCheckDescription());
示例#2
0
 public static void Basic(this ChecksConfigurator <Commands.Update.Update> c) => c.Enlist(new UpdateCheckDescription());
示例#3
0
 public static void Basic(this ChecksConfigurator <Commands.DeletePk.DeletePk> c) => c.Enlist(new DeletePkDescription());
示例#4
0
 public static ChecksConfigurator <Sql> Parameters(this ChecksConfigurator <Sql> ck)
 {
     ck.Enlist(new SqlCommandParmatersCheckDescription());
     return(ck);
 }
示例#5
0
 public static ChecksConfigurator <Sql> Text(this ChecksConfigurator <Sql> ck)
 {
     ck.Enlist(new SqlCommandTextCheckDescription());
     return(ck);
 }
示例#6
0
 public static void Basic(this ChecksConfigurator <Comment> c) => c.Enlist(new CommentCheckDescription());
示例#7
0
 public static void Basic(this ChecksConfigurator <CommandBase> c) => c.Enlist(new AnnotationCheckDescription());