The course concerns development of 64-bit applications in C/C++ language and is intended for those developers who use Visual Studio 2005/2008/2010 environment.
One key to attaining good parallel performance is choosing the right granularity for the application. The goal is to determine the right granularity (usually larger is better) for parallel tasks, while avoiding load imbalance and communication overhead to achieve the best performance.
Provide a mechanism to execute a list of tasks in parallel on multiple threads and communicate back to the calling thread useful state such as exceptions, timeouts and successful task completion.
This is a continuation of the article The Back Side of Exceptions (.NET section). Here, you'll find an abstract solution of a very important problem of unexpected exceptions.
The WorkflowProbe is the custom WF Activity for capturing the business behavior within the type/XOML activated Workflow and publishing it to the WCF channel.
In this article, you will see how to create and read the XML file, how to add new elements, new attributes and replace the value of existing element in/from existing XML file.
Few step(s) to remove SQL Server database user(s) when you are facing error like “The database principal owns a database role and cannot be dropped.” for dropping a user.
I need implement business using nhibernate ORM
I have two entites
Project
(Id,Name,Effort)
Task
(Id,Name,Effort)
I need update Effort in Project when Effort in Task changes.
How to do it ?
I have planed to use event system build in nhibernate but still don't know how to access to Project entity within Task Event