Stories recently tagged with 'Architecture'

Never break the build again with an organized code base(galratner.com)

submitted by galratnergalratner(334) 1 year, 2 months ago

During my time developing for different companies one of the most common daily scenarios I encounter is helping a developer debug code. Going to some method’s definition, only to realize they can only view metadata and not actual code. The library is still internal, most likely developed by another department inside the same organization, however, it was added as an external DLL reference and to view the code they need to open another solution in another folder. Well this will work until the external code has been updated and since code is updated daily, the references must also be updated or the code base quickly goes out of sync, not to mention debugging the external binaries is very difficult. read more...

add a comment |category: |Views: 4

tags: another

Considerations for Securing Your API(blog.inedo.com)

submitted by crazyeddiecrazyeddie(59) 1 year, 2 months ago

Leaving your API unsecured is not a good option: a malicious developer could simply read the documentation, figure out what the API URL is, and do whatever he wants. Security is a must, and there are a few ways to go about it. read more...

add a comment |category: |Views: 3

tags: another

ASP.NET MVC 3 w/ Razor Infrastructure Template « Composite Code(compositecode.com)

submitted by adronadron(835) 1 year, 2 months ago

I decided, after poking around with Visual Studio 2010 Templates tonight, to publish a baseline infrastructure using ASP.NET MVC 3 w/ Razor, Entity Framework, and other elements using the .NET stack.  So far I’ve only got some skeleton code put together for the infrastructure project and posted it to m... read more...

add a comment |category: |Views: 14

tags: another

Flatten your architecture: Simplicity as a core value(ayende.com)

submitted by joycscjoycsc(1597) 1 year, 2 months ago

Ayende discusses how a seemingly well structured yet complex application architecture which follows SOLID principles isn’t always the best thing when it comes to reading data (and tuning for performance) read more...

add a comment |category: |Views: 53

tags: another

What is SharePoint 2010?(sharepoint-2010-world.blogspot.com)

submitted by sharepoint2010mastersharepoint2010master(45) 1 year, 3 months ago

If someone asked this question then there is no one answer for this. SharePoint is a very big system and has plenty of features. So, if we start talking about them then it will take weeks to cover all features. But in simple words "Microsoft SharePoint is an enterprise collaboration and content management platform which enables users to connect each other and share the information across an organization. Indirectly which solves the problems in an organization to share the documents, security, business process, maintaining data etc. SharePoint 2010 has rich UI and plenty of features."....... read more...

add a comment |category: |Views: 17

tags: another

Johannes Hoppe - VSone Presentation Sneak Peek(www.sharpcrafters.com)

submitted by kingbee71kingbee71(511) 1 year, 3 months ago

Johannes Hoppe gives a video sneak peak of his upcoming AOP presentation at VSone in Munich, Germany on February 17th. read more...

add a comment |category: |Views: 12

tags: another

C#, Clean up your Linq-queries and lambda expressions(daniel.wertheim.se)

submitted by sedanwersedanwer(216) 1 year, 3 months ago

Last week something caught my eyes. How scattered business logic can become if you let your binary expressions be used “here and there” when matching entities against certain rules. Logic for a single entity, e.g Customer can be used all over your codebase. This article will show you a way to get around this and to get a central repository of rules/predicates that can be applied to entities and makes your daily unit test writing easier. I will use simple operator overloading for accomplishing this. read more...

add a comment |category: |Views: 17

tags: another

Resolving Instances using Delegates in Unity(xhalent.wordpress.com)

submitted by xhalentxhalent(85) 1 year, 3 months ago

Unlike StructureMap, Unity does not provide a method to use a delegate to satsify the resolution of an instance for a required type. This post show a technique that overcomes this shortfall. read more...

add a comment |category: |Views: 6

tags: another

A better framework - ClientUI(www.i-programmer.info)

submitted by mikejmikej(661) 1 year, 3 months ago

ClientUI takes the WPF and Silverlight framework and extends it into something more logical and unified. You really can write a single program that targets both and makes use of the Model-View-ViewModel paradigm. read more...

add a comment |category: |Views: 4

tags: another

Clean and clear configuration with StructureMap - Context is King(weblogs.asp.net)

submitted by thangchungthangchung(204) 1 year, 4 months ago

Today, I will continue to sharing some knowledge that I know about StructureMap on Multi-layers application. So I think everyone also know about Multi-layers application, in past we often used the 3 layers (Presentation, Business Logic and Data Access), but by the time maybe we had more than 3 layers as well. In past, when I used Spring.NET framework for IoC container, I must make many configuration in XML file (who knew about XML hell???), it is ... read more...

add a comment |category: |Views: 22

tags: another

Lazy developer(osmirnov.net)

submitted by slo2olsslo2ols(618) 1 year, 4 months ago

If I ask about Lazy Loading pattern, 99 out of 100 developers know what it is and what it eats. But if I ask where they use it most often, then more than half will answer - for implementation of Singleton pattern (sometimes I think that 110 of 100 developers know about it). We won't blame them for such illnesses as singletonism (singletonitis is who very love singletons), but the fact remains when developers take for ORM the Lazy Loading are interested them in the least. Let's find out why. read more...

add a comment |category: |Views: 90

tags: another

AOP with StructureMap Container - Context is King(weblogs.asp.net)

submitted by thangchungthangchung(204) 1 year, 4 months ago

The first thing I want to say is what is a AOP? So we need to know about the definition of it, yes starting now. Aspect Oriented Programming (AOP) was originally developed in the late 1980’s at the Xerox Palo Alto Research Center (PARC). All software that is developed has concerns. A concern is a goal, concept or area of interest. In most software there are two types of concerns, core concerns and system level concerns. Previous development meth... read more...

add a comment |category: |Views: 27

tags: another

A first look at ConfORM - Part 2(weblogs.asp.net)

submitted by thangchungthangchung(204) 1 year, 4 months ago

Today I will continue writing about ConfORM.  I've said in the previous parts of ConfORM and the advantages of it. This part I will only concentrate on how to build a multiple session factory for ConfORM (also known as multiple database). I get my ideas mainly from Sharp Architecture. First of all, why we need multiple Session Factory? If anyone knows about NHibernate knows that build a Session Factory is very expensive. As it will be a lot o... read more...

add a comment |category: |Views: 6

tags: another

A repository at the Linq epoch (Part VI): Repository implementation(osmirnov.net)

submitted by slo2olsslo2ols(618) 1 year, 4 months ago

Now that we have an idea of building dynamic queries, we can describe the repository to work with them. Its task is to free the developer from having to compile queries and facilitate their creation. In this way we are going to do in this final part of the series of posts. read more...

add a comment |category: |Views: 36

tags: another

Modular Programming - Programming small task or program(www.dotnetblocks.com)

submitted by DotNetBlocksDotNetBlocks(393) 1 year, 4 months ago

Modular programming is the method of programming small task or sub-programs that can be arranged in multiple variations to perform desired results. This methodology is great for preventing errors due to the fact that each task executes a specific process and can be debugged individually or within a larger program when combined with other tasks or sub programs. read more...

add a comment |category: |Views: 2

tags: another

Users can benefit from Session Tracking (www.dotnetblocks.com)

submitted by DotNetBlocksDotNetBlocks(393) 1 year, 4 months ago

There are a lot of benefits for using session tracking for both the user and the website. Users can benefit from session tracking due to the fact that a website can retain pertaining information for the user so that they do not have to re-enter the same information repeatedly. In addition, websites can hold specific items in a cart for each user so that they can pay for all of their items at once when they are ready to complete their purchases. read more...

add a comment |category: |Views: 8

tags: another