Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Orchard CustomForms module ( http://orchardcustomforms.codeplex.com/) to build up input forms for the enduser. The website is expected to have multiple independent user-input forms. The input data needs to be passed on into the database in custom independent tables (one for each form). It can be done in the Orchard database itself or a separate one, it will work for me as long as the data is maintained in separate custom tables. This data will be used for reporting later.

The question is, what is the best way to pass input data to custom data-tables, whether in CustomForms module or any other Orchard module?

1> Existing CustomForms module does create separate content-items for each user input. I do not want the data in this format.

2> I did what Piotr-Szmyd suggests here, http://orchard.codeplex.com/discussions/238319;
i. created a separate DAL service,
ii. in the CustomForms module created a service (interface +implementation) that talks to this DAL service,
iii. injected a dependency on this internal module-service (from point-ii) into the ItemController (of CustomForms module) so that the content-item data can be passed to the DAL service
This works. But, is ItemController the right place to inject the dependency? I cannot use CustomFormPartDriver as I need control on the content-item data and not the content-part data.

3> Isn't there a way to use the existing Orchard.Data layer to achieve this? If not, does it mean that all such independent data-table requirements in Orchard call for building up a separate service?
I have seen this How to change Orchard record repository and How to best integrate existing database data in a content type, but I do not have a definite answer to this yet.

I'm new to MVC and Orchard, and with the above approach (point#2) I'm not sure if I'm correctly fitting my requirements into he existing Orchard architecture? Any inputs/suggestions would greatly help.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.