Beispiel #1
0
 public ConditionParameterCanNotBeFoundException(string template, string varible, Orm.TableMetaData main)
     : base($" condition({template}) varible({varible}) can not be found in table({main.RelatedType})")
 {
 }
Beispiel #2
0
 public JoinKeyNotFountException(Orm.TableMetaData main, Orm.TableMetaData join, string joinKey)
     : base($"join table ({join.RelatedType})-- join-key({joinKey}) can not be found in main table ({main.RelatedType})")
 {
 }