Jachman

Stories submitted by Jachman

?? Operator and it’s use case(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 6 months ago

Long time I asked myself, for what the heck I could use the ?? operator. Last days I found the perfect scenario for using this operator. read more...

2 comments |category: |Views: 4

tags: another

Public Holiday Toolkit v1.0(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 6 months ago

Using this toolkit enables you to show public holidays for several countries within your .NET application. This can be interessting for many use cases. Think about calendars, appointments and so on. read more...

add a comment |category: |Views: 7

tags: another

New Release - AdFactum ObjectMapper .NET 2.0.2129.0(blog.objectmapper.net)

submitted by JachmanJachman(530) 4 years, 6 months ago

Today I’m proud to release version 2.0 of the AdFactum ObjectMapper .NET. This major release covers new key features like a first LINQ implementation, new projection classes and several bug fixes regarding the XML persister. read more...

add a comment |category: |Views: 4

tags: another

How to build CHM / HTML Documentation with Sandcastle September CTP 20(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 7 months ago

The new Sandcastle CTP isn’t well documented at all and the documentation that can be found is useless, because the Sandcastle September CTP 2007 changed alot compared to old CTPs for that the documentation has been written. This article shows how to build your documentation with the new Sandcastle September CTP and NANT. read more...

add a comment |category: |Views: 53

tags: another

Set Operations with C# Generics(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 7 months ago

C# Generics are powerful, but there are not many generic classes beyond List and Dictionary. Especially for Set Operations Generics are missing. That’s whay I created a small class for Set Operations called Set that contains the basic Set Operations, like Union, Intersect and Difference. read more...

1 comment |category: |Views: 63

tags: another

In-Code Profiling with C# and log4net(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 7 months ago

There are many tools that can be used for profiling software. These tools are a great enrichment for our job, but sometimes they are oversized. Sometimes, you need a small solution for a particular piece of code. If you find yourself at this point, I will show you a solution here. read more...

add a comment |category: |Views: 357

tags: another

ObjectDumper re-loaded(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 7 months ago

Sometimes in history a star flashes for a short moment to shade for the next. The same happened to the class ObjectDumper which is quite a handy class for writing NUnit Test cases - published one time in a microsoft sample - and after that never found again. The performance of that class used with NUnit was terrible, because the ObjectDumper wrote directly to the Console Out Stream. That forced NUnit to refresh the UI again and again. I improved the ObjectDumper, so that it takes a StringBuilder and write the complete output to the Console in one step. That’s faster. You can output the content of every object using the following syntax: ObjectDumper.Write (object you want to output); read more...

add a comment |category: |Views: 169

tags: another

How to store binary data (blob)(blog.objectmapper.net)

submitted by JachmanJachman(530) 5 years, 1 month ago

This article shows how to store binary data (blobs) using the AdFactum ObjectMapper .NET. read more...

add a comment |category: |Views: 37

tags: another

New Release - ObjectMapper .NET 1.60.1517.1(blog.objectmapper.net)

submitted by JachmanJachman(530) 5 years, 1 month ago

Today I’m proud to present the new major release of the AdFactum ObjectMapper .NET. This release includes two new features and one major attribute change. read more...

add a comment |category: |Views: 4

tags: another

Using the ObjectMapper in a multi threaded environment and cascaded tr(blog.objectmapper.net)

submitted by JachmanJachman(530) 5 years, 1 month ago

This tutorial shows how to use the AdFactum ObjectMapper .NET in an enterprise environment. Therefore we assume that we have several threads (e.g. IIS sessions) that will access business services. Furthermore we are using cascading transactions. So continue reading. read more...

add a comment |category: |Views: 4

tags: another

New Release - ObjectMapper .NET 1.50.1428.0(blog.objectmapper.net)

submitted by JachmanJachman(530) 5 years, 1 month ago

Announcing the new release of the ObjectMapper .NET. This release is a hot fix for the last version which had a small bug. In some special cases the ObjectMapper .NET wasn’t been able to deep load the object. read more...

add a comment |category: |Views: 2

tags: another

New Release - ObjectMapper .NET 1.50.1419.0(blog.objectmapper.net)

submitted by JachmanJachman(530) 5 years, 2 months ago

Today I’m proud to present you the new release of the AdFactum ObjectMapper .NET. The ObjectMapper .NET is an impressive open source project for object persistence, proven in real-world projects. It offers state-of-the-art object mapping functionality, yet it also provides advanced features that set it apart from other o/r mappers. read more...

add a comment |category: |Views: 1

tags: another

Caching Data for Windows Applications(jachman.wordpress.com)

submitted by JachmanJachman(530) 5 years, 2 months ago

This story shows how to cache data for windows applications. Re-Implementation of the System.Web.Caching.Cache class for Windows Applications. read more...

add a comment |category: |Views: 11

tags: another

New Release - ObjectMapper .NET 1.50.1312.0(blog.objectmapper.net)

submitted by JachmanJachman(530) 5 years, 3 months ago

Announcing the new release of the ObjectMapper .NET. The ObjectMapper .NET is an impressive open source project for object persistence, proven in real-world projects. It offers state-of-the-art object mapping functionality, yet it also provides advanced features that set it apart from other o/r mappers. read more...

add a comment |category: |Views: 2

tags: another

Best practice of storing configuration in INI Files with C# .NET(jachman.wordpress.com)

submitted by JachmanJachman(530) 5 years, 3 months ago

The author developed a template to store configuration data in INI Files using C# .NET. This template is highly configurable. Due to this fact you can store nearly everything in your configuration file. read more...

add a comment |category: |Views: 33

tags: another