Exemplo n.º 1
0
 public override void Register(TranslationPlugIns plugIns)
 {
     plugIns.RegisterMethodTranslator("sum", this);
     plugIns.RegisterMethodTranslator("max", this);
     plugIns.RegisterMethodTranslator("min", this);
     plugIns.RegisterMethodTranslator("average", this);
 }
Exemplo n.º 2
0
 public override void Register(TranslationPlugIns plugIns)
 {
     plugIns.RegisterMethodTranslator("OrderBy", this);
     plugIns.RegisterMethodTranslator("OrderByDescending", this);
     plugIns.RegisterMethodTranslator("ThenBy", this);
     plugIns.RegisterMethodTranslator("ThenByDescending", this);
 }
Exemplo n.º 3
0
 public abstract void Register(TranslationPlugIns plugIns);
Exemplo n.º 4
0
 public override void Register(TranslationPlugIns plugIns)
 {
     plugIns.RegisterMethodTranslator("where", this);
 }
 public override void Register(TranslationPlugIns plugIns)
 {
     plugIns.RegisterMethodTranslator("take", this);
     plugIns.RegisterMethodTranslator("skip", this);
 }
Exemplo n.º 6
0
 public override void Register(TranslationPlugIns plugIns)
 {
     plugIns.RegisterMethodTranslator("startswith", this);
     plugIns.RegisterMethodTranslator("endswith", this);
 }
Exemplo n.º 7
0
 /// <inheritdoc />
 public override void Register(TranslationPlugIns plugIns)
 {
     plugIns.RegisterMethodTranslator("DistinctCount", this);
 }