What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for read
I have two expressions of type Expression<Func<T, bool>> and I want to take to OR, AND or NOT of t
I have an array of integers in string form: var arr = new string[] { "1", "2", "3", "4" }; I need to an arr
I know there are a few posts about Newtonsoft so hopefully this isn't exactly a repeat...I'm trying
What is the most efficient way to write the old-school: StringBuilder sb = new StringBuilder(); if (strings.C
I want to add some rows to a database using Linq to SQL, but I want to make a "custom check" before adding the
Using LINQ on collections, what is the difference between the following lines of code? if(!coll.Any(i => i
Is there a better way to get the Property name when passed in via a lambda expression? Here is what i currentl
in the System.Linq namespace, we can now extend our IEnumerable's to have the Any() and Count() extension
In the latest (RC1) release of ASP.NET MVC, how do I get Html.ActionLink to render as a button or an image ins
I wish to add an ASP.NET Web API to an ASP.NET MVC 4 Web Application project, developed in Visual Studio 2012.
I can't find it for some reason, feeling a little dumb. How do I know? I'm using .net 4 with VS2010.
My Tools: Visual Studio 2012 Ultimate + Update 1 ReSharper v7.1.25.234 My Solution Build Status: Build Succ
I'm at wit's end. Visual Studio is typically painfully slow to debug or just plain load ("start with
I am configuring an MVC 3 project to work on a local install of IIS and came across the following 500 error:
I have an action I call from an anchor thusly, Site/Controller/Action/ID where ID is an int. Later on I need
I need to do something fairly simple: in my ASP.NET MVC application, I want to set a custom IIdentity / IPrinc
In ASP.NET MVC, what is the difference between: Html.Partial and Html.RenderPartial Html.Action and Html.Rend
Every time a user posts something containing < or > in a page in my web application, I get this exceptio
I'm working with ASP.NET Core application. I'm trying to implement Token Based Authentication but ca