We are looking for a reporting solution that will easily work with our existing read architecture. All of our read queries are returned from Query handler with an interface
TQuery is a query with various parameters e.g. Employee Type etc
TResult is in most cases IEnumerable<T> E.g. we could have a person query whose return type is IEnumerable<Person>.
These queries are custom projections with various business logic in them so we can't go direct to the database.
Can Telerik reporting easily be used to create reports and bind to a result type of IEnumerable<T>? We don't want to bind to something which implements IEnumerable<T> we want to bind something which is a IEnumerable<T>. We would like the report to be able to pass parameters which we could use to populate our Query object.
Also when is Telerik Reporting Q3 release estimated to be out? We want to use it in an MVC app (which I appreciate older versions can be) but it sounds a better experience in the next release
Any advice would be appreciated
IQueryHandler<TQuery, TResult>
TQuery is a query with various parameters e.g. Employee Type etc
TResult is in most cases IEnumerable<T> E.g. we could have a person query whose return type is IEnumerable<Person>.
These queries are custom projections with various business logic in them so we can't go direct to the database.
Can Telerik reporting easily be used to create reports and bind to a result type of IEnumerable<T>? We don't want to bind to something which implements IEnumerable<T> we want to bind something which is a IEnumerable<T>. We would like the report to be able to pass parameters which we could use to populate our Query object.
Also when is Telerik Reporting Q3 release estimated to be out? We want to use it in an MVC app (which I appreciate older versions can be) but it sounds a better experience in the next release
Any advice would be appreciated