Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,6 @@ public override ValueTask ApplyChangesAsync(DocumentSessionBase session, EventSl

public class MySingleStreamProjection: SingleStreamProjection<CustomAggregate, Guid>
{
public override CustomAggregate Evolve(CustomAggregate snapshot, Guid id, IEvent e)
{
return base.Evolve(snapshot, id, e);
}
}

public record struct MyCustomStringId(string Value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ public DictionaryValuesMember(IDictionaryMember parent, StoreOptions options) :

}

public override void PlaceValueInDictionaryForContainment(Dictionary<string, object> dict, ConstantExpression constant)
{
base.PlaceValueInDictionaryForContainment(dict, constant);
}

public Type ElementType { get; }

public SelectManyValueCollection SelectManyUsage { get;}
Expand Down
5 changes: 0 additions & 5 deletions src/Marten/Linq/Parsing/SelectParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ public SelectParser(ISerializer serializer, IQueryableMemberCollection members,

public NewObject NewObject { get; private set; }

public override Expression Visit(Expression node)
{
return base.Visit(node);
}

protected override Expression VisitBinary(BinaryExpression node)
{
if (node.TryToParseConstant(out var constant))
Expand Down
5 changes: 0 additions & 5 deletions src/Marten/Linq/Parsing/SelectorVisitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ public SelectorVisitor(SelectorStatement statement, IQueryableMemberCollection c
_serializer = serializer;
}

public override Expression Visit(Expression node)
{
return base.Visit(node);
}

protected override Expression VisitMethodCall(MethodCallExpression node)
{
if (node.Method.Name == nameof(QueryableExtensions.ExplicitSql))
Expand Down
5 changes: 0 additions & 5 deletions src/Marten/Linq/Parsing/SimpleExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,6 @@ public SimpleExpression(IQueryableMemberCollection queryableMembers, Expression
}
}

public override Expression Visit(Expression node)
{
return base.Visit(node);
}

// Pretend for right now that there's only one of all of these
// obviously won't be true forever
public ConstantExpression Constant { get; set; }
Expand Down
Loading