dynamic query support.

This commit is contained in:
David Lebee
2021-02-02 19:01:29 -05:00
parent 8175dc5f3d
commit ca307194db
26 changed files with 698 additions and 12 deletions
@@ -11,5 +11,6 @@ namespace PoweredSoft.CQRS.Abstractions.Discovery
Type QueryType { get; }
Type ServiceType { get; }
Type QueryResultType { get; }
string Category { get; }
}
}
@@ -27,5 +27,6 @@ namespace PoweredSoft.CQRS.Abstractions.Discovery
public virtual Type QueryType { get; }
public virtual Type ServiceType { get; }
public virtual Type QueryResultType { get; }
public virtual string Category => "BasicQuery";
}
}