cengizh

Stories submitted by cengizh

Create an output folder for each project in your solution...(develoq.net)

submitted by cengizhcengizh(35) 6 months ago

Create an output folder for each project in your solution, like _PublishedWebsites for web applications. read more...

add a comment |category: |Views: 6

tags: another

Custom Controller Factory in ASP.NET MVC(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

I am using ASP.NET MVC framework from the time first beta bits released, I am big fan of this framework because of it’s extensibility and specifically simplicity. ASP.NET MVC framework activates the controllers when a request arrived to it’s pipeline. Default naming and structure rules of controllers are : Controller class name must ends with “Controller”. Controller class must have constructor with no parameters. These constraints come from the default controller factory of ASP.NET MVC Framework. read more...

add a comment |category: |Views: 23

tags: another

Dynamic Management Views and Functions Tips(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

Dynamic Management Views and Functions feature comes with SQL Server 2005 version. They provides some information about system, and what is going under when SQL Server running. So you can use DMV and DMF objects to monitor the system and tune it. These object located under sys schema and names are start with the dm. As previous system objects in SQL Server, internal implementation of these objects can be change with the future releases. I want to share some code snippets about some of DMV/F’s which I had use while tuning and monitoring SQL Server. read more...

add a comment |category: |Views: 3

tags: another

SQL Server Database Snapshot(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

SQL Server database snapshot feature provides you to have a read-only copy of your current database. You can create a snapshot only on the server which is actual db located. In other words, you can’t create a snapshot on any other server than the server that host your actual database. We use snapshots for solving some reporting problem and some scenarios like that. Benefits of the snapshot is not the subject of this blog entry. If you have experience with SQL Server snapshot, did you think about this limitation? What is the design issues under this limitation? read more...

add a comment |category: |Views: 3

tags: another

What is Continuous Integration?(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

Continuous Integration is a software development practice. This practice and name firstly pronounced by Martin Fowler and Kent Beck in 1999. The idea behind this practice is integrating the code that is checked in by developers frequently. Picture this scenario; you have a team of developers and every developer makes checkins their work. All of the developers try to build the changes they made successfully in their own machines. But every developer makes checkins and these checkins must be integrated and you need to know that all checkins can work in the whole system successfully. I know some companies dedicate some people only for this job -making integrations manually-. This is not a good solution. The solution is automation! Continuous Integration (CI) automates this process. read more...

add a comment |category: |Views: 4

tags: another

Don’t castrate your architecture(ayende.com)

submitted by cengizhcengizh(35) 2 years, 10 months ago

Application architecture tiers, layers and nhibernate. read more...

add a comment |category: |Views: 12

tags: another