Tagged Questions

3
votes
2answers
594 views

CRUD-style data driven distributed .NET application architecture questions

Context: Building a smart client application on the .NET platform where you have a complex database model with a high number of columns involved. The natural application style is a typical data driven ...
3
votes
2answers
544 views

Data-driven state machine application

We are currently working on a "data-driven" state machine application. Right now, the state flows are all configured in the database, but none of the decision/business logic is configurable in the DB ...
1
vote
2answers
134 views

Data-driven dependency injection

Are there any frameworks out there that allow for data-driven dependency injection (ideally in .NET)? I'm thinking something inspired by Spring.NET for example, where you configure your object graphs ...
0
votes
1answer
42 views

How do I control the type of a column in data-driven unit test with CSV datasource?

I have a data driven unit test that uses a CSV file for its data source. One of the columns in my file is meant to be treated as a string. It works fine until I add a line where the value for that ...