skip to Main Content

Asp.net – Calling endpoint in api from Blazor

I have such a service public Sell Sell(Guid guid, double Quantity) { Sell sell = new Sell(); var result = _connectionDB.States.Find(guid); sell.Name = result.Name; sell.EAN = result.EAN; sell.Profit = result.Profit; sell.Quantity = Quantity; sell.SellePriceBrutto = result.SellePriceBrutto; sell.GTU = result.GTU; sell.dateTimeSell…

VIEW QUESTION

How to Correct Error in ASP.NET Core Application with C#

I got this error "Format of the initialization string does not conform to specification starting at index 0." while migrating. my connection string given in appsettings.json "ConnectionStrings": { "DefaultConnection": "Data Source=LAPTOP-P08F3TG1/ckary;Initial Catalog=Product;Integrated Security=True" }, ApplicationDbcontext.cs public class ApplicationDbContext:DbContext { public…

VIEW QUESTION
Back To Top
Search