Пример #1
0
        public static DeleteCommand <T> Expand <T>(this DeleteCommand <T> command, string expression)
        {
            command.Expand.Add(expression);

            return(command);
        }
Пример #2
0
 public static DeleteCommand <T> SetAdditionalParameters <T>(this DeleteCommand <T> command, IAdditionalParameters <T> additionalParameters)
 {
     command.AdditionalParameters = additionalParameters;
     return(command);
 }
Пример #3
0
        public static DeleteCommand <T> Expand <T>(this DeleteCommand <T> command, Expression <Func <T, Reference> > expression)
        {
            command.Expand.Add(new Expansion <T>(expression).ToString());

            return(command);
        }