Showing posts with label Visual Studio. Show all posts
Showing posts with label Visual Studio. Show all posts

Monday, 11 July 2016

Classes residing in App_Code is not accessible

namespace CLIck10.App_Code
{
    public static class Glob
    {
        ...
    }
}

Right click on the .cs file in the App_Code folder and check its properties.
Make sure the "Build Action" is set to "Compile".

C# LINQ Joins With SQL

There are  Different Types of SQL Joins  which are used to query data from more than one database tables. In this article, you will learn a...