SQL connection to Dapper/Asp.net Core

Asked

Viewed 119 times

1

I’m starting in Asp.net Core and I’m having difficulties to connect my Sql database. Below is my Model inserir a descrição da imagem aqui

My class of connection inserir a descrição da imagem aqui

appsetting.json inserir a descrição da imagem aqui

startup.Cs inserir a descrição da imagem aqui

Controller inserir a descrição da imagem aqui

Error shown when trying to execute inserir a descrição da imagem aqui

I already referenced Nuget with Dapper. Please help me understand where I am missing in connection with SQL.

2 answers

1

0

Rafael’s tip already says a lot of what to do if using methods GetConnectionStrings, but if you need for some very specific reason use the Connectionstring from the configuration illustrated { Data : { ConnectionLoja: ...}, just use var dataLoja = configuration.GetSection("DataLoja").Get<DataLoja>();

Browser other questions tagged

You are not signed in. Login or sign up in order to post.