Ejemplo n.º 1
0
        public SimpleQuery ThenByDescending(DynamicReference reference)
        {
            if (_order == null)
            {
                throw new InvalidOperationException("ThenBy requires an existing OrderBy");
            }

            return(new SimpleQuery(this, order: _order.Append(new SimpleOrderByItem(reference, OrderByDirection.Descending))));
        }
Ejemplo n.º 2
0
 internal DynamicSchema SetMemberAsSchema(DynamicReference reference)
 {
     if (reference == null)
     {
         throw new ArgumentNullException("reference");
     }
     _members.TryUpdate(reference.GetName(), new DynamicSchema(reference.GetName(), this), reference);
     return((DynamicSchema)_members[reference.GetName()]);
 }
Ejemplo n.º 3
0
 private SimpleQuery ParseThenBy(string methodName)
 {
     methodName = Regex.Replace(methodName, "^then_?by_?", "", RegexOptions.IgnoreCase);
     if (methodName.EndsWith("descending", StringComparison.OrdinalIgnoreCase))
     {
         methodName = Regex.Replace(methodName, "_?descending$", "", RegexOptions.IgnoreCase);
         return(ThenByDescending(DynamicReference.FromString(_tableName + "." + methodName)));
     }
     return(ThenBy(DynamicReference.FromString(_tableName + "." + methodName)));
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations such as getting a value for a property.
 /// </summary>
 /// <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
 /// <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to <paramref name="result"/>.</param>
 /// <returns>
 /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)
 /// </returns>
 public override bool TryGetMember(GetMemberBinder binder, out object result)
 {
     if (binder.Name == "All")
     {
         Trace.WriteLine("The dynamic 'All' property is deprecated; use the 'All()' method instead.");
         result = GetAll().ToList();
         return(true);
     }
     result = new DynamicReference(binder.Name, new DynamicReference(_tableName, _dataStrategy));
     return(true);
 }
Ejemplo n.º 5
0
 public SimpleQuery OrderByDescending(DynamicReference reference)
 {
     return(new SimpleQuery(this, order: new[] { new SimpleOrderByItem(reference, OrderByDirection.Descending) }));
 }
Ejemplo n.º 6
0
 public SimpleQuery OrderBy(DynamicReference reference)
 {
     return(new SimpleQuery(this, order: new[] { new SimpleOrderByItem(reference) }));
 }