Suresh Behera
The Microsoft .Net Junkies
-
Converting SQL To Linq
After working so long on I SQL ,you always need little trick to write you Linq Quires.Here is few tools which might help to generate your linq quries.
-
101 LINQ Samples
Awesome list of LINQ sample
-
KeyMaps for ReSharper 5.1
ReSharper is very nice tool and I am still learning the shortcuts.I thought to install kepmay plugin for ReSharper and try my luck.Well the batch file installed it under 5.0 but failed to copy other directories.So I manually copied but still no hope.
-
Double click on Visual Studio short cut
Well, for some unfortunate reason double click to visual studio 2010 shortcut does guarantee it will work all time.I had this situation n-no of time before and today.I wish I would know why and this can be reproduce easily on any windows 7 enterprise OS.
-
Microsoft Visual Studio 2010 crash
I add a .CSS file to my MVC3 solution and it stops working with below error.
-
Advantage of MVVM
- Separation of concerns
- Data Binding
- Unit Test
- Designer Vs developer integration
- Easy to change UI
- Easily can integrate with multiple platform like Windows Mobile,Web,Desktop -
Delete bin and obj folder from projects directories
You always have problem to debug when you do latest from source control.You might end up deleting bin/obj folder sometime.Here is nice bat file which delete bin/obj folder(s).
1. copy this on notepad and save it as clean.bat file
2. Keep this file on root directory
3. Double check the directory on "DIR /B /AD /S obj" and "DIR /B /AD /S bin"
---------------------------------------------------------------------------------------------- -
Deselect first row on gridview onload
I had situation to deselect the first gridview row on load and came to know IsSynchronizedWithCurrentItem on Gridview should able to that but some how i missed on gridview.
-
Is this bug or by design on Excel
try this –
-
Silverlight hierarchy gridview with MVVM
Since few days i have been struggling to bind a gridview from a simple WCF async call.
Following article look promising…