Translate

Monday, November 7, 2016

CRUD Operations with the Entity Framework



SQL to create "tblInstitutionsWithKey":

USE [YourDBName]
GO

/****** Object:  Table [dbo].[tblInstitutionsWithKey]     ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[tblInstitutionsWithKey](
    [InstitutionID] [int] NOT NULL,
    [InstitutionDesc] [nvarchar](255) NULL,
    [IsMonthlyBill] [bit] NOT NULL,
    [IsFixedCredit] [bit] NOT NULL,
    [FixedCredit] [float] NULL,
    [IsFixedDebit] [bit] NOT NULL,
    [FixedDebit] [float] NULL,
    [SortOrder] [int] NULL,
    [Balance] [float] NULL,
PRIMARY KEY CLUSTERED
(
    [InstitutionID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO


Thursday, June 18, 2015

What's new in C# 6

What's New in C# 6 - MVA

You may have to sign up on Microsoft Virtual Academy to view this video.  MVA is FREE.