Behzad Khosravifar
Behzad Khosravifar
I make a request here as well [#730](https://github.com/thangchung/awesome-dotnet-core/issues/730)
I added [Installing guides](https://github.com/bezzad/Downloader#installing-via-nuget) in the readme. if you use [Nuget](https://www.nuget.org/packages/Downloader) packages in your `.Net` projects just type the below command on your Package Manager console of VisualStudio: `PM> Install-Package...
The Downloader can download a file in multiple parts as parallel with global speed limitations. To control download speed you can use the `MaximumBytesPerSecond` property of Config. If you want...
Maybe ALTER SP and Func in apllication startup is good for this job!
Create a Function by name `GetLastModify()` to give a table same a key/value pair dictionary to check the last updates date by existance methods date and if has a new...
this better to show full details by row **OnMouseOver** tooltip!
One SP by name '**sp_CatchError**' created to catch any SQL Error without passing parameters. **sp_CatchError** Body is: ``` sql CREATE PROCEDURE [dbo].[sp_CatchError] @RaisError bit AS BEGIN DECLARE @DatabaseName NVARCHAR(max) =...
### How to use this SP One Stored Procedure example with **sp_CatchError** usage: ``` sql USE [TestDB] GO /****** Object: StoredProcedure [dbo].[sp_TestThrowError] ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON...
Yes, is good idea to add custom data into error log table by this SP. i try it again...
One Parameters by name `@ExtraData nvarchar(max)` added to **sp_CatchError** for attach extra data to Data (_xml_) fields. For example to use that: ``` sql Begin TRY -- Throw one exception...