예제 #1
0
 public string GetActions()
 {
     _builder.Select("Actions", new List <string>()
     {
         "Id", "Type"
     });
     _builder.Where("Type", "Funny");
     _builder.Limit(100);
     return(_builder.GetSQL());
 }