TelegramBotFramework/TelegramBotBase.Extensions.Serializer.Database.MSSQL
dependabot[bot] 4e55fd42d6
Bump Microsoft.Data.SqlClient
Bumps [Microsoft.Data.SqlClient](https://github.com/dotnet/sqlclient) from 5.0.0 to 5.1.3.
- [Release notes](https://github.com/dotnet/sqlclient/releases)
- [Changelog](https://github.com/dotnet/SqlClient/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dotnet/sqlclient/compare/v5.0.0...v5.1.3)

---
updated-dependencies:
- dependency-name: Microsoft.Data.SqlClient
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-16 19:28:47 +00:00
..
2022-10-08 19:26:34 +03:00
2022-10-08 19:26:34 +03:00

TelegramBotBase.Extensions.Serializer.Database.MSSQL

NuGet version (TelegramBotBase) Telegram chat

License Package Downloads

How to use

using TelegramBotBase.Extensions.Serializer.Database.MSSQL;


var bot = BotBaseBuilder
            .Create()
            .WithAPIKey(APIKey)
            .DefaultMessageLoop()
            .WithStartForm<Start>()
            .NoProxy()
            .OnlyStart()
            .UseSQLDatabase("localhost", "telegram_bot")
            .UseEnglish()
            .Build();

bot.Start();