ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern, cloud-enabled, Internet-connected apps. With ASP.NET Core, you can: Build web apps and services, Internet of Things (IoT) apps, and mobile backends.
Every Question..What does it mean? Why is this? How it works?
Microsoft .Net (pronounced dot (.) net) may be a package element that runs on the Windows software package.
.Net provides tools and libraries that change developers to form Windows package a lot of quicker and easier.
Microsoft describes it as:".Net is that the Microsoft internet Service strategy to attach data, people,
system and devices through software".I'm Choulla Naresh..!
Thursday, May 4, 2023
DCL commands
TCL commands
DML commands
DDL commands
what is SQL ?
Sunday, April 2, 2023
This site can't be reached error
Solution 1:
- open cmd as admin
- cd C:\Program Files (x86)\IIS Express
- IisExpressAdminCmd.exe setupsslUrl -url:https://localhost:portnumber/ -UseSelfSigned
Tuesday, January 3, 2023
exception has been thrown by the target of an invocation in c#
changes dll version or upgrade dll .. change old dll library to new dll library
...\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll
Friday, December 9, 2022
Database from SINGLE USER mode to MULTI USER
USE master;
GO
ALTER DATABASE MyDb2022
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE;
GO
ALTER DATABASE MyDb2022
SET READ_ONLY;
GO
Wednesday, November 30, 2022
How to insert a string value with an apostrophe (single quote) in a column
INSERT
INTO
testtable
VALUES
(1,
'Naresh C'
houlla')
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near ‘houlla’.
Msg 105, Level 15, State 1, Line 1
Unclosed quotation mark after the character string ‘)
INSERT
INTO
testtable
VALUES
(1,
'Naresh C'
'houlla'
)