About 384 results
Open links in new tab
  1. A Full-featured ASP.NET Core Data Service Web API with

    Sep 10, 2024 · As per original settings, the in-memory SQL Server database is used to provide the data for demo purposes. Thus, setting up any physical database is not required to obtain …

  2. Configuring IIS, ASP.NET, and SQL Server - CodeProject

    Oct 29, 2013 · This article is an updated one discussing the configuration of IIS, ASP.NET and SQL Server.

  3. SQL Server CLR Integration Part 1: Security - CodeProject

    Mar 4, 2007 · SQL CLR This is the first in what I plan to be a series of articles examining the Common Language Runtime (CLR) hosted by SQL Server 2005. This installment looks at the …

  4. Step by Step Approach to Create a WCF Data Service

    Jul 31, 2015 · So let’s create a SQL Server database. Right click on the App_Data -> Create SQL Server database and define the schema as below: Now let’s feed some values into our newly …

  5. ASP.NET Web Api 2.2: Create a Self-Hosted OWIN-Based Web Api …

    We can add a database, and use Entity Framework in our self-hosted Web Api. Since we are self-hosting, we may (depending upon the needs of our application) want to also use a local, in …

  6. Sharded Multi-Tenant Database using SQL Server Row-Level Security

    Nov 20, 2021 · An overview of how to design a scalable Multi-Tenant Database using Row-Level Security Predicate Functions and DDL triggers to enforce that all shared tables ar

  7. Using C# to Connect to and Query from a SQL Database

    Nov 3, 2014 · Learn how to use C# to connect to and query a SQL database, enabling efficient data retrieval and manipulation for your applications.

  8. Microservice using ASP.NET Core - CodeProject

    Feb 10, 2019 · Check the SQL Server Management Studio to verify if the database got created. When the data of the Categories table is viewed, the default master data of the three …

  9. CRUD Operations in Python with SQL Database - CodeProject

    Jan 22, 2019 · Create a Database and a Table in SQL We have a Python project ready and we are ready to implement CRUD operations, but before that, let's create the database and a …

  10. SQL Server Database Cloning Tool using C# - CodeProject

    May 26, 2015 · After googling for some time, I found a way to copy the database using SMO (SQL Server Management Objects) API. Let's see how this tool works and it's implementation. Using …