Tobias Rummelt

Results 11 comments of Tobias Rummelt

I would use it in an import tool that is run in intervals.The data is processed before the import so I have it as objects already. Volume is about 10000...

I also thought that this could be added to the `SqlBuilder` and I would be happy with that too. Something like ``` CSharp SqlBuilder.Insert().Into(...) .Columns(...) .Values(...).Values(...).Values(...) ```

I've started to work on a draft for this. For `SqlBuilder` this is simple enough, `IInsertValue.Values` returns itself instead of `IToSqlQuery` and the implementation adjusts the command for more rows....

Sounds good. Requires only a minimum effort to do for the user. The only thing an instance factory could add would be full control over how object are created. Sadly...

Hello, sorry for the late answer. I didn't have time at work to look at this thoroughly until now. Yes, this looks like it would fit our needs. How would...

Yes this would work. Thank you.

Don't know enough about the workings of `session.Insert` and how that would effect that. It could also break code that relies on the current behavior... Noticed another thing though, `session.Fetch(sql)`...

That will have to wait until Monday when I get back to work, but will do.

Ah! I did not see that discussion. Sorry. We can continue this discussion there and close this one if you would like. Yes, that looks like it would work. That...