kazimanzurrashid

Stories kicked by friends of kazimanzurrashid

Introducing Autobox - on the fly DI container(weblogs.asp.net)

submitted by vijaystvijayst(1311) 6 months, 21 days ago

This post introduces Autobox - on the fly dependency injection (DI) container. read more...

add a comment |category: |Views: 69

tags: another

Make the ASP.NET DataPager SEO friendly?(www.andreas-kraus.net)

submitted by reteepreteep(739) 2 years, 1 month ago

Why you still can'T use the ASP.NET Datapager to make your paged URLs searchengine friendly. read more...

add a comment |category: |Views: 25

tags: another

Doing your first mock with JustMock(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 1 month ago

In this post, i will start with a more traditional mocking example that includes a fund transfer scenario between two different currency account using JustMock. read more...

add a comment |category: |Views: 34

tags: another

JustMock is here !!(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 1 month ago

As announced earlier by Hristo Kosev at Telerik blogs , we have started giving out JustMock builds from today. This is the first of early builds before the official Q2 release and we are pretty excited to get your feedbacks. read more...

add a comment |category: |Views: 7

tags: another

Creating a basic proxy for intercepting [quick update](weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 2 months ago

In my previous post, i enhanced the proxy to support generic calls. In order to minimize IL emit and move more parts to managed code, there is a better way to process the return value rather doing the checks against runtime method and see whether the method’s return type is a value or not for generic calls to un-box the object form that is returned from the interceptor. read more...

add a comment |category: |Views: 11

tags: another

A basic proxy for intercepting method calls (Part – 3)(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 3 months ago

In my previous posts, I showed how to create a proxy that can delegate calls. I further modified it to support argument list from original method and handled scenarios for void and non-void calls. In this post, i will further enhance it to introduce generic calls. read more...

add a comment |category: |Views: 33

tags: another

A basic proxy for intercepting method calls (Part –2)(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 4 months ago

In my previous post , i introduced a basic proxy that intercepts methods. But what is missing in the proxy is that it does not consider method arguments and can not handle return types. In this post, i will enhance the proxy to support exactly those. read more...

add a comment |category: |Views: 9

tags: another

A basic proxy for intercepting method calls (Part –1)(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 4 months ago

In this post i am going to show how you can write your own proxy for delegating calls. This just shows a way how you can handle it on your own but for complex interceptions its always wise to use alpha/beta/tested solutions. The post is more of an under the hood / aims to solve simple interception tasks where you might not need a full featured dynamic proxy or building something that requires similar techniques that might save your day. read more...

add a comment |category: |Views: 19

tags: another

Do you Encode your interface ?(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 5 months ago

Yesterday , i was reading Clean Code by Uncle Bob. While i was doing so , i came across a line that really stuck my thought patterns and i would like to share it with my readers as well. The line looks something like, provided that there is a shape factory that will be implemented by concrete classes. ... read more...

add a comment |category: |Views: 18

tags: another

Configuring Team build using XUnit [From Client](weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 9 months ago

Recently, while i was setting up TFS build [to enable CI] for a project at Telerik that i am currently working on, i came across configuring it up with XUnit for doing automated tests every time someone checks-in source code after the build process is complete using the Xunit MsBuild task and additionally it will print the build steps so that developer knows what’s the issue. read more...

add a comment |category: |Views: 14

tags: another

Introducing CodePaste.NET(west-wind.com)

submitted by rstrahlrstrahl(7226) 2 years, 10 months ago

As a learning experience for taking ASP.NET MVC for a spin I recently created a new site that has now gone live: Codepaste.NET which provides a public location to post code snippet and link them from social network sites that have limited input lengths and make code discussions otherwise difficult. The site's a work in process, but I hope it's useful to some of you for sharing and discussing small blocks of code online. read more...

2 comments |category: |Views: 407

tags: another

Introducing LINQ to M(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 10 months ago

Now , it happens that you go to McDonalds website and order an item for you. It could happen that price of the menu changed or new one comes to the menu. Now, generally it can happen that admin can go though wizard and loads of textboxes or dropdowns to make the changes or he/she can just write as if he/she is writing in some text editor and everything else is taken care of on behalf. Textual DSL is a powerful tool that might become the future of how we communicate to computer systems. Well, things are not that easy to convert human language to machine readable forms completely but its not bad to dream for the best :-). read more...

add a comment |category: |Views: 20

tags: another

Hey jQuery lovers, ASP.NET AJAX can do Ajax too!(myviewstate.net)

submitted by kevinbabcockkevinbabcock(345) 2 years, 11 months ago

Learn how to make Ajax requests easy with the ASP.NET AJAX client-side library. read more...

add a comment |category: |Views: 17

tags: another

ASP.NET AJAX & Type-safe parameters(myviewstate.net)

submitted by kevinbabcockkevinbabcock(345) 2 years, 11 months ago

Learn how to use the "new" parameter-type-checking feature of the ASP.NET AJAX 4.0 client library. read more...

add a comment |category: |Views: 6

tags: another

Operation could destabilize the runtime – Reflection.Emit and common p(weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 11 months ago

In the last post i said about LinqtExtender implementing necessary property and injecting specific settings for entity objects. The issue i have is that it works fine under full / high trust settings but when running in medium trust it gives the following error: Ouch.. it is only happening while i am the using the extender from medium trus... read more...

add a comment |category: |Views: 45

tags: another

Extending your existing API or legacy data classes to support LINQ (weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 11 months ago

While developing LinqExtender, i have come across various scenarios that people don’t want to extent any query class or even implement any interface. Also, it is almost absurd when they have to add new extender specific attributes to their entity class. It is though not very important for people creating new provider with small codebase but with large... read more...

add a comment |category: |Views: 6

tags: another