Last active
March 30, 2021 12:46
-
-
Save gistlyn/eae5a3e87ba201b2ea7436b5d97d61e5 to your computer and use it in GitHub Desktop.
mysql files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet add package ServiceStack.OrmLite.MySql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using ServiceStack; | |
using ServiceStack.Data; | |
using ServiceStack.DataAnnotations; | |
using ServiceStack.OrmLite; | |
namespace MyApp | |
{ | |
// Example Data Model | |
// public class MyTable | |
// { | |
// [AutoIncrement] | |
// public int Id { get; set; } | |
// public string Name { get; set; } | |
// } | |
public class ConfigureDb : IConfigureServices, IConfigureAppHost | |
{ | |
IConfiguration Configuration { get; } | |
public ConfigureDb(IConfiguration configuration) => Configuration = configuration; | |
public void Configure(IServiceCollection services) | |
{ | |
services.AddSingleton<IDbConnectionFactory>(new OrmLiteConnectionFactory( | |
Configuration.GetConnectionString("DefaultConnection") | |
?? "Server=localhost;User Id=test;Password=test;Database=test;Pooling=true;MinPoolSize=0;MaxPoolSize=200", | |
MySqlDialect.Provider)); | |
} | |
public void Configure(IAppHost appHost) | |
{ | |
appHost.GetPlugin<SharpPagesFeature>()?.ScriptMethods.Add(new DbScriptsAsync()); | |
// Create non-existing Table and add Seed Data Example | |
// using var db = appHost.Resolve<IDbConnectionFactory>().Open(); | |
// if (db.CreateTableIfNotExists<MyTable>()) | |
// { | |
// db.Insert(new MyTable { Name = "Seed Data for new MyTable" }); | |
// } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment