This question is locked. New answers and comments are not allowed.
Is there an example or can someone assist me in creating a simple bar chart while consuming data using entity framework?
The query could be as simple as:
SELECT COUNT(Invoice_Header_Id) AS [Total Invoices], Created_By
FROM Accounts_Payable.Invoice_Header
WHERE (Date_Created >= CONVERT(DATETIME, '2012-12-19 00:00:00', 102))
GROUP BY Created_By
I don't have an entity created yet. I would most likely use a store procedure and return a complex type.
Any help is appreciated.
Thanks
Bob
The query could be as simple as:
SELECT COUNT(Invoice_Header_Id) AS [Total Invoices], Created_By
FROM Accounts_Payable.Invoice_Header
WHERE (Date_Created >= CONVERT(DATETIME, '2012-12-19 00:00:00', 102))
GROUP BY Created_By
I don't have an entity created yet. I would most likely use a store procedure and return a complex type.
Any help is appreciated.
Thanks
Bob