When prototyping SisoDb I used datatables under the covers when consuming the SqlBulkCopy class to insert data. This lead to that I had the source entities in memory as well as the datatables. Since the SqlBulkCopy class can work with readers I created a very simple datareader implementation over my entities instead. I gained a … Continue reading »
Tagged with c# …
MongoDB in C# – Extensions to support Json-mapping or Proxy generation
Note! This is an update to my previous post. For history and explanation of the consuming code see my previous post. I have made some quick changes to make the JSON API and the Proxy API that I wrote about in the earlier post, easier to use. I have put the code in an external … Continue reading »
Getting started with MongoDB – Using Json.Net and Castle Dynamic proxy
This post is divided in three blocks: – Getting MongoDB to run on your machine – Consume it manually via the MongoDB – Console – Consume it from C# code. Updates! See new post. Or how to do it, using Simple-MongoDB If you are just intereseted in the C# implementation, the section for how to … Continue reading »
How-to test a project that is focused on SSIS
How-to test a project that is focused on SSIS Recently I have been working in a project where SSIS is the primary technology used for solve a business case where focus lies on data-processing. Normally I work with plain C# code and I like test driven development and I like the bi-product that comes with … Continue reading »