Is there an elegant way to write an insert statement, which has a lot of parameters? I have like 20 flags that need to be saved in the DB, plus other information that also require to be inserted, along with those 20 flags. Writing a method with 30 parameters for that insert is a waste of time, but so far I haven't come up with other ideas, that might work.
|
You can put all these parameters in an object and pass that object to the method. |
|||
|
|
|
A standard approach is to create a class representing your entity and then pass around an instance of that class. This makes it easy to pass to other methods that may do validation, presentation, etc., as well as persistence. |
|||
|
|
|
Agree with Sachin, encapsulate the list of SqlParameters that you need inside a class and then pass the instance to the datalayer for further processing of the SQL queries. |
|||
|
|
|
You could create an Interface that represents type of object that can be inserted in you database such as Iinsertable that expose a method such as getFields. With that, you create entities that implement this interface. With those entities, in you database layer you can create a generic method that accept a Iinsertable as a parameter, you that query all the fields to be inserted with the getFiels method in a loop. This will make your code reusable for every type of entities and it will be clean as hell. |
|||
|
|
[Flags] enum MyFlags { ... }? If so, you could easily represent those 20 flags with one variable. – Mike Guthrie Apr 25 '12 at 14:34