System.ArgumentException:初始化字符串的格式不符合从索引0开始的规范

问题描述 投票:0回答:1

我正在尝试制作一个.net核心Web API,但我无法找到解决问题的方法。

完全错误是

[ERR]在迭代上下文类型“MailAlertWebApiWithEF.Data.AlertContext”'的查询结果时,数据库发生异常。“”“System.ArgumentException:初始化字符串的格式不符合从索引0开始的规范。

我从现有数据库中获取配置代码

Scaffold-DbContext“server =。; ConnectionString”Microsoft.EntityFrameworkCore.SqlServer -OutputDir DBModels -force -v

我的配置是:

 public class AlertModelConfiguration<T>:BaseEntityModelConfiguration<T,int> where T:Alert
{

    public AlertModelConfiguration(ref ModelBuilder modelBuilder):base(ref modelBuilder)
    {
        modelBuilder.Entity<Alert>(entity =>
        {
            //entity.HasKey(e => e.AlertId);

            entity.Property(e => e.CreateDate).HasColumnType("datetime");

            entity.Property(e => e.DeleteDate).HasColumnType("datetime");

            entity.Property(e => e.Detail)
                .IsRequired()
                .HasMaxLength(2046)
                .IsUnicode(false);

            entity.Property(e => e.ErrorDetail)
                .IsRequired()
                .HasMaxLength(255)
                .IsUnicode(false);

            entity.Property(e => e.Title)
                .HasMaxLength(50)
                .IsUnicode(false);

            entity.Property(e => e.UpdateDate).HasColumnType("datetime");
        });
     }
}

我的背景是:

 public class AlertContext:DbContext
  {
    public AlertContext(DbContextOptions<AlertContext> options)
        : base(options)
    {

    }

    public virtual DbSet<Alert> Users { get; set; }


    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {

        new AlertModelConfiguration<Alert>(ref modelBuilder);


        base.OnModelCreating(modelBuilder);
    }
}

我在appsettings.json里面的ConnectionStrings:

ConnectionStrings": {
   "AlertContext": "server=.;database=*****;poling=false;Connect 
 Timeout=60;Integrated Security=SSPI"

当ı开始在调试模式API卡在引擎层内。

我的引擎和IEngine:

Task<CustomListEntity<Alert>> GetByIdAsync(int id);

 public  Task<CustomListEntity<Alert>> GetByIdAsync(int id)
    {
        return  CommonOperationAsync(async () =>
         {
             var predicate = PredicateBuilder.True<Alert>();
             predicate = predicate.And(p => p.Id == id);



             return new CustomListEntity<Alert>()
             {
                 EntityList = await _alertReqository.GetAll(skip: 0, take: 10, predicate: predicate,
                     orderExpression: null, rowCount: out var count, ascending: false).ToListAsync(),

                 Count = count,
             };
         }, new BusinessBaseRequest()
         {
             MethodBase = MethodBase.GetCurrentMethod()
         }, BusinessUtilMethod.CheckRecordIsExist, GetType().Name);
    }

我尝试了自己的配置文件但结果是一样的。请帮忙有什么不对?

c# .net asp.net-web-api core
1个回答
3
投票

此错误表示您的连接字符串不正确。

“pooling”一词中有拼写错误,请尝试使用以下连接字符串:

ConnectionStrings": {
         "AlertContext": "server=.;database=*****;pooling=false; 
                 Timeout=60;Integrated Security=SSPI"

如果仍然无法正常工作,请确保服务器和数据库值正常。

© www.soinside.com 2019 - 2024. All rights reserved.