Hi,
I just made the first steps with that framework.
the service:
View_EmployeeSkillService view_Service
Now I want to test my query to a view.
View_EmployeeSkillParameterBuilder searchQuery = new View_EmployeeSkillParameterBuilder();
in a method I built the Query
view_Service.Find(searchQuery.GetParameters()).ToArray<View_EmployeeSkill>()
So for running that last command I need to 'organize' the connection to Database.
Is it correct to set the connetion with DataRepository.AddConnection("ConnectionName","connectionString") ?
after I stooped seeking and started asking. How can I start connect to DB? (and before that test the connection?)
How do I set the service to that connection? thanks
Greeting,
dunkelelb