Skip to content Skip to sidebar Skip to footer
Showing posts with the label Asp.net Core

How To Return Filestreamresult With Sqldatareader

I have an ASP.NET Core project that downloads large files which are stored in SQL Server. It works … Read more How To Return Filestreamresult With Sqldatareader

How To Store List In Sql Server From Asp.net Core?

I have this table in my database and I want to store incoming data: public string Id { get; set; } … Read more How To Store List In Sql Server From Asp.net Core?

Storing Custom Class Property Like String Via Onmodelcreating Of Dbcontext .net Core

I have two classes in .Net Core The class Owner namespace CustomStoreDatabase.Models { public c… Read more Storing Custom Class Property Like String Via Onmodelcreating Of Dbcontext .net Core

.net Core 2 - Connection String With Instance Name And Port Number

In my application I have a connection string in the config. This application created using .NET cor… Read more .net Core 2 - Connection String With Instance Name And Port Number

How To Map The Results Of Sql Query Onto Objects In Net Core2?

How can I map the results of a SQL command into a class object in Net Core, with SqlCommand() or Fr… Read more How To Map The Results Of Sql Query Onto Objects In Net Core2?

How To Convert Xml Output From Stored Procedure To C# Object In Asp Net Core

SET ANSI_NULLS ON; GO SET QUOTED_IDENTIFIER ON; GO ALTER PROC [dbo].[getStateWiseCompanyDetails] AS… Read more How To Convert Xml Output From Stored Procedure To C# Object In Asp Net Core