Code Monkey home page Code Monkey logo

Comments (4)

chhinsras avatar chhinsras commented on May 20, 2024 3

cool. if there is switchable option in the setting.

from blazor-starter-kit.

iammukeshm avatar iammukeshm commented on May 20, 2024 1

cool, i will add this to the guide in a while. thanks! I hope you liked this project,

from blazor-starter-kit.

erdikalleci avatar erdikalleci commented on May 20, 2024

I am trying. But I am getting error "Integrated Security". Has anyone encountered this error? What is the reason? I searched but couldn't find a solution.

from blazor-starter-kit.

fpieragostini avatar fpieragostini commented on May 20, 2024

I would like to share MySQL Implementation to get the right table names in BlazorHeroContext.cs file and the code change for hangfire.

The first one change in BlazorHeroContext.cs

    protected` override void OnModelCreating(ModelBuilder builder)
    {
        foreach (var property in builder.Model.GetEntityTypes()
        .SelectMany(t => t.GetProperties())
        .Where(p => p.ClrType == typeof(decimal) || p.ClrType == typeof(decimal?)))
        {
            property.SetColumnType("decimal(18,2)");
        }
        
        foreach (var property in builder.Model.GetEntityTypes()
            .SelectMany(t => t.GetProperties())
            .Where(p => p.Name is "LastModifiedBy" or "CreatedBy"))
        {
            property.SetColumnType("nvarchar(128)");
        }
        
        base.OnModelCreating(builder);
        builder.Entity<ChatHistory<BlazorHeroUser>>(entity =>
        {
            entity.ToTable("ChatHistory");

            entity.HasOne(d => d.FromUser)
                .WithMany(p => p.ChatHistoryFromUsers)
                .HasForeignKey(d => d.FromUserId)
                .OnDelete(DeleteBehavior.ClientSetNull);

            entity.HasOne(d => d.ToUser)
                .WithMany(p => p.ChatHistoryToUsers)
                .HasForeignKey(d => d.ToUserId)
                .OnDelete(DeleteBehavior.ClientSetNull);
        });

        builder.Entity<BlazorHeroUser>(entity =>
        {
            entity.ToTable(name: "Users");
            entity.Property(e => e.Id).ValueGeneratedOnAdd();
        });
        builder.Entity<BlazorHeroUser>(entity => entity.Property(m => m.Id).HasMaxLength(200));
        builder.Entity<BlazorHeroUser>(entity => entity.Property(m => m.NormalizedUserName).HasMaxLength(200));
        builder.Entity<BlazorHeroUser>(entity => entity.Property(m => m.NormalizedEmail).HasMaxLength(200));

        builder.Entity<BlazorHeroRole>(entity =>
        {
            entity.ToTable(name: "Roles");
        });
        builder.Entity<BlazorHeroRole>(entity => entity.Property(m => m.NormalizedName).HasMaxLength(200));
        builder.Entity<BlazorHeroRole>(entity => entity.Property(m => m.Id).HasMaxLength(200));

        builder.Entity<IdentityUserRole<string>>(entity =>
        {
            entity.ToTable("UserRoles");
        });
        builder.Entity<IdentityUserRole<string>>(entity => entity.Property(m => m.UserId).HasMaxLength(200));
        builder.Entity<IdentityUserRole<string>>(entity => entity.Property(m => m.RoleId).HasMaxLength(200));

        builder.Entity<IdentityUserClaim<string>>(entity =>
        {
            entity.ToTable("UserClaims");
        });
        builder.Entity<IdentityUserClaim<string>>(entity => entity.Property(m => m.UserId).HasMaxLength(200));

        builder.Entity<IdentityUserLogin<string>>(entity =>
        {
            entity.ToTable("UserLogins");
        });
        builder.Entity<IdentityUserLogin<string>>(entity => entity.Property(m => m.UserId).HasMaxLength(200));
        builder.Entity<IdentityUserLogin<string>>(entity => entity.Property(m => m.LoginProvider).HasMaxLength(200));
        builder.Entity<IdentityUserLogin<string>>(entity => entity.Property(m => m.ProviderKey).HasMaxLength(200));

        builder.Entity<BlazorHeroRoleClaim>(entity =>
        {
            entity.ToTable(name: "RoleClaims");
            entity.HasOne(d => d.Role)
                .WithMany(p => p.RoleClaims)
                .HasForeignKey(d => d.RoleId)
                .OnDelete(DeleteBehavior.Cascade);
        });
        builder.Entity<BlazorHeroRoleClaim>(entity => entity.Property(m => m.RoleId).HasMaxLength(200));

        builder.Entity<IdentityUserToken<string>>(entity =>
        {
            entity.ToTable("UserTokens");
        });
        builder.Entity<IdentityUserToken<string>>(entity => entity.Property(m => m.UserId).HasMaxLength(200));
        builder.Entity<IdentityUserToken<string>>(entity => entity.Property(m => m.LoginProvider).HasMaxLength(200));
        builder.Entity<IdentityUserToken<string>>(entity => entity.Property(m => m.Name).HasMaxLength(200));
    }

The second one for startup.cs

    `services.AddHangfire(x => x.UseStorage(new MySqlStorage(_configuration.GetConnectionString("DefaultConnection"))));`

add the namespace

    `using Hangfire.MySql.Core;` 

You have to sure to install the Hangfire.MySql.Core package in Server and Infrastructure project.

Thanks to @ricardopdv for the first comment and special thanks to @iammukeshm for the BlazorHero Boilerplate!

F.

from blazor-starter-kit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.