Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
NewLifeProject
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Юнусов Ибрагим
NewLifeProject
Commits
355dfcbe
Commit
355dfcbe
authored
Jul 18, 2022
by
Юнусов Ибрагим
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Добавил роли
parent
ad067cc2
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
309 additions
and
13 deletions
+309
-13
AccountsController.cs
NewStores/Store/Controllers/AccountsController.cs
+13
-7
HomeController.cs
NewStores/Store/Controllers/HomeController.cs
+3
-0
ServicesAppExtension.cs
NewStores/Store/Extensions/ServicesAppExtension.cs
+1
-1
20220718152553_Init.Designer.cs
NewStores/Store/Migrations/20220718152553_Init.Designer.cs
+107
-0
20220718152553_Init.cs
NewStores/Store/Migrations/20220718152553_Init.cs
+74
-0
AppDbContextModelSnapshot.cs
NewStores/Store/Migrations/AppDbContextModelSnapshot.cs
+59
-1
AppDbContext.cs
NewStores/Store/Models/AppDbContext.cs
+10
-0
Role.cs
NewStores/Store/Models/Users/Role.cs
+13
-0
User.cs
NewStores/Store/Models/Users/User.cs
+4
-1
Program.cs
NewStores/Store/Program.cs
+1
-1
IUserRepository.cs
NewStores/Store/Repositories/Interfaces/IUserRepository.cs
+2
-0
UserRepository.cs
NewStores/Store/Repositories/UserRepository.cs
+6
-2
AuthService.cs
NewStores/Store/Services/AuthService.cs
+6
-0
IAuthService.cs
NewStores/Store/Services/IAuthService.cs
+6
-0
Store.csproj
NewStores/Store/Store.csproj
+4
-0
No files found.
NewStores/Store/Controllers/AccountsController.cs
View file @
355dfcbe
...
@@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Authentication;
...
@@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Authentication;
using
Microsoft.AspNetCore.Authentication.Cookies
;
using
Microsoft.AspNetCore.Authentication.Cookies
;
using
Microsoft.AspNetCore.Mvc
;
using
Microsoft.AspNetCore.Mvc
;
using
Store.Models
;
using
Store.Models
;
using
Store.Models.Users
;
using
Store.Repositories.Interfaces
;
using
Store.Repositories.Interfaces
;
using
Store.ViewModels.Auths
;
using
Store.ViewModels.Auths
;
...
@@ -36,7 +37,7 @@ public class AccountsController : Controller
...
@@ -36,7 +37,7 @@ public class AccountsController : Controller
{
{
if
(
user
.
Password
.
Equals
(
model
.
Password
))
if
(
user
.
Password
.
Equals
(
model
.
Password
))
{
{
await
AuthenticateAsync
(
user
.
Email
);
await
AuthenticateAsync
(
user
);
return
RedirectToAction
(
"Index"
,
"Home"
);
return
RedirectToAction
(
"Index"
,
"Home"
);
}
}
ModelState
.
AddModelError
(
""
,
"пароль введен неверно"
);
ModelState
.
AddModelError
(
""
,
"пароль введен неверно"
);
...
@@ -71,13 +72,17 @@ public class AccountsController : Controller
...
@@ -71,13 +72,17 @@ public class AccountsController : Controller
var
user
=
_userRepository
.
GetUserByEmail
(
viewModel
.
Email
);
var
user
=
_userRepository
.
GetUserByEmail
(
viewModel
.
Email
);
if
(
user
is
null
)
if
(
user
is
null
)
{
{
_userRepository
.
Create
(
new
User
var
role
=
_userRepository
.
GetRoles
().
FirstOrDefault
(
s
=>
s
.
Name
==
"user"
);
var
newUser
=
new
User
{
{
Email
=
viewModel
.
Email
,
Email
=
viewModel
.
Email
,
Password
=
viewModel
.
Password
Password
=
viewModel
.
Password
,
});
RoleId
=
role
?.
Id
,
Role
=
role
};
_userRepository
.
Create
(
newUser
);
_userRepository
.
Save
();
_userRepository
.
Save
();
await
AuthenticateAsync
(
viewModel
.
Email
);
await
AuthenticateAsync
(
newUser
);
return
RedirectToAction
(
"Index"
,
"Home"
);
return
RedirectToAction
(
"Index"
,
"Home"
);
}
}
...
@@ -93,11 +98,12 @@ public class AccountsController : Controller
...
@@ -93,11 +98,12 @@ public class AccountsController : Controller
return
RedirectToAction
(
"Login"
);
return
RedirectToAction
(
"Login"
);
}
}
private
async
Task
AuthenticateAsync
(
string
userName
)
private
async
Task
AuthenticateAsync
(
User
user
)
{
{
var
claims
=
new
List
<
Claim
>
var
claims
=
new
List
<
Claim
>
{
{
new
Claim
(
ClaimsIdentity
.
DefaultNameClaimType
,
userName
)
new
Claim
(
ClaimsIdentity
.
DefaultNameClaimType
,
user
.
Email
),
new
Claim
(
ClaimsIdentity
.
DefaultNameClaimType
,
user
.
Role
?.
Name
)
};
};
ClaimsIdentity
id
=
new
ClaimsIdentity
(
ClaimsIdentity
id
=
new
ClaimsIdentity
(
claims
,
claims
,
...
...
NewStores/Store/Controllers/HomeController.cs
View file @
355dfcbe
using
System.Diagnostics
;
using
System.Diagnostics
;
using
Microsoft.AspNetCore.Authorization
;
using
Microsoft.AspNetCore.Mvc
;
using
Microsoft.AspNetCore.Mvc
;
using
Store.ViewModels
;
using
Store.ViewModels
;
namespace
Store.Controllers
;
namespace
Store.Controllers
;
[Authorize]
public
class
HomeController
:
Controller
public
class
HomeController
:
Controller
{
{
private
readonly
ILogger
<
HomeController
>
_logger
;
private
readonly
ILogger
<
HomeController
>
_logger
;
...
@@ -18,6 +20,7 @@ public class HomeController : Controller
...
@@ -18,6 +20,7 @@ public class HomeController : Controller
return
View
();
return
View
();
}
}
[
Authorize
(
Roles
=
"admin, user"
)]
public
IActionResult
Privacy
()
public
IActionResult
Privacy
()
{
{
return
View
();
return
View
();
...
...
NewStores/Store/Extensions/ServicesAppExtension.cs
View file @
355dfcbe
...
@@ -15,7 +15,7 @@ public static class ServicesAppExtension
...
@@ -15,7 +15,7 @@ public static class ServicesAppExtension
services
.
AddAuthentication
(
CookieAuthenticationDefaults
.
AuthenticationScheme
)
services
.
AddAuthentication
(
CookieAuthenticationDefaults
.
AuthenticationScheme
)
.
AddCookie
(
opt
=>
.
AddCookie
(
opt
=>
{
{
opt
.
LoginPath
=
new
PathString
(
"/Account/Login"
);
opt
.
LoginPath
=
new
PathString
(
"/Account
s
/Login"
);
});
});
//repositories
//repositories
...
...
NewStores/Store/Migrations/2022071815
0011
_Init.Designer.cs
→
NewStores/Store/Migrations/2022071815
2553
_Init.Designer.cs
View file @
355dfcbe
// <auto-generated />
// <auto-generated />
using
System
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore.Infrastructure
;
using
Microsoft.EntityFrameworkCore.Infrastructure
;
using
Microsoft.EntityFrameworkCore.Migrations
;
using
Microsoft.EntityFrameworkCore.Migrations
;
...
@@ -11,7 +12,7 @@ using Store.Models;
...
@@ -11,7 +12,7 @@ using Store.Models;
namespace
Store.Migrations
namespace
Store.Migrations
{
{
[
DbContext
(
typeof
(
AppDbContext
))]
[
DbContext
(
typeof
(
AppDbContext
))]
[
Migration
(
"2022071815
0011
_Init"
)]
[
Migration
(
"2022071815
2553
_Init"
)]
partial
class
Init
partial
class
Init
{
{
protected
override
void
BuildTargetModel
(
ModelBuilder
modelBuilder
)
protected
override
void
BuildTargetModel
(
ModelBuilder
modelBuilder
)
...
@@ -23,7 +24,36 @@ namespace Store.Migrations
...
@@ -23,7 +24,36 @@ namespace Store.Migrations
NpgsqlModelBuilderExtensions
.
UseIdentityByDefaultColumns
(
modelBuilder
);
NpgsqlModelBuilderExtensions
.
UseIdentityByDefaultColumns
(
modelBuilder
);
modelBuilder
.
Entity
(
"Store.Models.User"
,
b
=>
modelBuilder
.
Entity
(
"Store.Models.Users.Role"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
string
>(
"Name"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
HasKey
(
"Id"
);
b
.
ToTable
(
"Roles"
);
b
.
HasData
(
new
{
Id
=
1
,
Name
=
"admin"
},
new
{
Id
=
2
,
Name
=
"user"
});
});
modelBuilder
.
Entity
(
"Store.Models.Users.User"
,
b
=>
{
{
b
.
Property
<
int
>(
"Id"
)
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
ValueGeneratedOnAdd
()
...
@@ -39,9 +69,37 @@ namespace Store.Migrations
...
@@ -39,9 +69,37 @@ namespace Store.Migrations
.
IsRequired
()
.
IsRequired
()
.
HasColumnType
(
"text"
);
.
HasColumnType
(
"text"
);
b
.
Property
<
int
?>(
"RoleId"
)
.
HasColumnType
(
"integer"
);
b
.
HasKey
(
"Id"
);
b
.
HasKey
(
"Id"
);
b
.
HasIndex
(
"RoleId"
);
b
.
ToTable
(
"Users"
);
b
.
ToTable
(
"Users"
);
b
.
HasData
(
new
{
Id
=
1
,
Email
=
"email@test"
,
Password
=
"1234"
,
RoleId
=
1
});
});
modelBuilder
.
Entity
(
"Store.Models.Users.User"
,
b
=>
{
b
.
HasOne
(
"Store.Models.Users.Role"
,
"Role"
)
.
WithMany
(
"Users"
)
.
HasForeignKey
(
"RoleId"
);
b
.
Navigation
(
"Role"
);
});
modelBuilder
.
Entity
(
"Store.Models.Users.Role"
,
b
=>
{
b
.
Navigation
(
"Users"
);
});
});
#pragma warning restore 612, 618
#pragma warning restore 612, 618
}
}
...
...
NewStores/Store/Migrations/2022071815
0011
_Init.cs
→
NewStores/Store/Migrations/2022071815
2553
_Init.cs
View file @
355dfcbe
...
@@ -9,6 +9,19 @@ namespace Store.Migrations
...
@@ -9,6 +9,19 @@ namespace Store.Migrations
{
{
protected
override
void
Up
(
MigrationBuilder
migrationBuilder
)
protected
override
void
Up
(
MigrationBuilder
migrationBuilder
)
{
{
migrationBuilder
.
CreateTable
(
name
:
"Roles"
,
columns
:
table
=>
new
{
Id
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
.
Annotation
(
"Npgsql:ValueGenerationStrategy"
,
NpgsqlValueGenerationStrategy
.
IdentityByDefaultColumn
),
Name
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
)
},
constraints
:
table
=>
{
table
.
PrimaryKey
(
"PK_Roles"
,
x
=>
x
.
Id
);
});
migrationBuilder
.
CreateTable
(
migrationBuilder
.
CreateTable
(
name
:
"Users"
,
name
:
"Users"
,
columns
:
table
=>
new
columns
:
table
=>
new
...
@@ -16,18 +29,46 @@ namespace Store.Migrations
...
@@ -16,18 +29,46 @@ namespace Store.Migrations
Id
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
Id
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
.
Annotation
(
"Npgsql:ValueGenerationStrategy"
,
NpgsqlValueGenerationStrategy
.
IdentityByDefaultColumn
),
.
Annotation
(
"Npgsql:ValueGenerationStrategy"
,
NpgsqlValueGenerationStrategy
.
IdentityByDefaultColumn
),
Email
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
),
Email
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
),
Password
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
)
Password
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
),
RoleId
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
true
)
},
},
constraints
:
table
=>
constraints
:
table
=>
{
{
table
.
PrimaryKey
(
"PK_Users"
,
x
=>
x
.
Id
);
table
.
PrimaryKey
(
"PK_Users"
,
x
=>
x
.
Id
);
table
.
ForeignKey
(
name
:
"FK_Users_Roles_RoleId"
,
column
:
x
=>
x
.
RoleId
,
principalTable
:
"Roles"
,
principalColumn
:
"Id"
);
});
migrationBuilder
.
InsertData
(
table
:
"Roles"
,
columns
:
new
[]
{
"Id"
,
"Name"
},
values
:
new
object
[,]
{
{
1
,
"admin"
},
{
2
,
"user"
}
});
});
migrationBuilder
.
InsertData
(
table
:
"Users"
,
columns
:
new
[]
{
"Id"
,
"Email"
,
"Password"
,
"RoleId"
},
values
:
new
object
[]
{
1
,
"email@test"
,
"1234"
,
1
});
migrationBuilder
.
CreateIndex
(
name
:
"IX_Users_RoleId"
,
table
:
"Users"
,
column
:
"RoleId"
);
}
}
protected
override
void
Down
(
MigrationBuilder
migrationBuilder
)
protected
override
void
Down
(
MigrationBuilder
migrationBuilder
)
{
{
migrationBuilder
.
DropTable
(
migrationBuilder
.
DropTable
(
name
:
"Users"
);
name
:
"Users"
);
migrationBuilder
.
DropTable
(
name
:
"Roles"
);
}
}
}
}
}
}
NewStores/Store/Migrations/AppDbContextModelSnapshot.cs
View file @
355dfcbe
// <auto-generated />
// <auto-generated />
using
System
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore.Infrastructure
;
using
Microsoft.EntityFrameworkCore.Infrastructure
;
using
Microsoft.EntityFrameworkCore.Storage.ValueConversion
;
using
Microsoft.EntityFrameworkCore.Storage.ValueConversion
;
...
@@ -21,7 +22,36 @@ namespace Store.Migrations
...
@@ -21,7 +22,36 @@ namespace Store.Migrations
NpgsqlModelBuilderExtensions
.
UseIdentityByDefaultColumns
(
modelBuilder
);
NpgsqlModelBuilderExtensions
.
UseIdentityByDefaultColumns
(
modelBuilder
);
modelBuilder
.
Entity
(
"Store.Models.User"
,
b
=>
modelBuilder
.
Entity
(
"Store.Models.Users.Role"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
string
>(
"Name"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
HasKey
(
"Id"
);
b
.
ToTable
(
"Roles"
);
b
.
HasData
(
new
{
Id
=
1
,
Name
=
"admin"
},
new
{
Id
=
2
,
Name
=
"user"
});
});
modelBuilder
.
Entity
(
"Store.Models.Users.User"
,
b
=>
{
{
b
.
Property
<
int
>(
"Id"
)
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
ValueGeneratedOnAdd
()
...
@@ -37,9 +67,37 @@ namespace Store.Migrations
...
@@ -37,9 +67,37 @@ namespace Store.Migrations
.
IsRequired
()
.
IsRequired
()
.
HasColumnType
(
"text"
);
.
HasColumnType
(
"text"
);
b
.
Property
<
int
?>(
"RoleId"
)
.
HasColumnType
(
"integer"
);
b
.
HasKey
(
"Id"
);
b
.
HasKey
(
"Id"
);
b
.
HasIndex
(
"RoleId"
);
b
.
ToTable
(
"Users"
);
b
.
ToTable
(
"Users"
);
b
.
HasData
(
new
{
Id
=
1
,
Email
=
"email@test"
,
Password
=
"1234"
,
RoleId
=
1
});
});
modelBuilder
.
Entity
(
"Store.Models.Users.User"
,
b
=>
{
b
.
HasOne
(
"Store.Models.Users.Role"
,
"Role"
)
.
WithMany
(
"Users"
)
.
HasForeignKey
(
"RoleId"
);
b
.
Navigation
(
"Role"
);
});
modelBuilder
.
Entity
(
"Store.Models.Users.Role"
,
b
=>
{
b
.
Navigation
(
"Users"
);
});
});
#pragma warning restore 612, 618
#pragma warning restore 612, 618
}
}
...
...
NewStores/Store/Models/AppDbContext.cs
View file @
355dfcbe
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
using
Store.Models.Users
;
namespace
Store.Models
;
namespace
Store.Models
;
public
class
AppDbContext
:
DbContext
public
class
AppDbContext
:
DbContext
{
{
public
DbSet
<
User
>
Users
{
get
;
set
;
}
public
DbSet
<
User
>
Users
{
get
;
set
;
}
public
DbSet
<
Role
>
Roles
{
get
;
set
;
}
public
AppDbContext
(
DbContextOptions
<
AppDbContext
>
contextOptions
)
:
base
(
contextOptions
)
public
AppDbContext
(
DbContextOptions
<
AppDbContext
>
contextOptions
)
:
base
(
contextOptions
)
{
{
}
}
protected
override
void
OnModelCreating
(
ModelBuilder
modelBuilder
)
{
modelBuilder
.
Entity
<
Role
>().
HasData
(
new
Role
{
Id
=
1
,
Name
=
"admin"
});
modelBuilder
.
Entity
<
Role
>().
HasData
(
new
Role
{
Id
=
2
,
Name
=
"user"
});
modelBuilder
.
Entity
<
User
>().
HasData
(
new
User
{
Id
=
1
,
Email
=
"email@test"
,
Password
=
"1234"
,
RoleId
=
1
});
}
}
}
\ No newline at end of file
NewStores/Store/Models/Users/Role.cs
0 → 100644
View file @
355dfcbe
namespace
Store.Models.Users
;
public
class
Role
{
public
int
Id
{
get
;
set
;
}
public
string
Name
{
get
;
set
;
}
public
List
<
User
>
Users
{
get
;
set
;
}
public
Role
()
{
Users
=
new
List
<
User
>();
}
}
\ No newline at end of file
NewStores/Store/Models/User.cs
→
NewStores/Store/Models/User
s/User
.cs
View file @
355dfcbe
namespace
Store.Models
;
namespace
Store.Models
.Users
;
public
class
User
public
class
User
{
{
public
int
Id
{
get
;
set
;
}
public
int
Id
{
get
;
set
;
}
public
string
Email
{
get
;
set
;
}
public
string
Email
{
get
;
set
;
}
public
string
Password
{
get
;
set
;
}
public
string
Password
{
get
;
set
;
}
public
int
?
RoleId
{
get
;
set
;
}
public
Role
?
Role
{
get
;
set
;
}
}
}
\ No newline at end of file
NewStores/Store/Program.cs
View file @
355dfcbe
...
@@ -27,6 +27,6 @@ app.UseAuthorization();
...
@@ -27,6 +27,6 @@ app.UseAuthorization();
app
.
MapControllerRoute
(
app
.
MapControllerRoute
(
name
:
"default"
,
name
:
"default"
,
pattern
:
"{controller=
Home}/{action=Index}/{id?
}"
);
pattern
:
"{controller=
Accounts}/{action=Login
}"
);
app
.
Run
();
app
.
Run
();
\ No newline at end of file
NewStores/Store/Repositories/Interfaces/IUserRepository.cs
View file @
355dfcbe
using
Store.Models
;
using
Store.Models
;
using
Store.Models.Users
;
namespace
Store.Repositories.Interfaces
;
namespace
Store.Repositories.Interfaces
;
...
@@ -6,4 +7,5 @@ public interface IUserRepository : IRepository<User>
...
@@ -6,4 +7,5 @@ public interface IUserRepository : IRepository<User>
{
{
User
?
GetUserById
(
int
id
);
User
?
GetUserById
(
int
id
);
User
?
GetUserByEmail
(
string
email
);
User
?
GetUserByEmail
(
string
email
);
List
<
Role
>
GetRoles
();
}
}
\ No newline at end of file
NewStores/Store/Repositories/UserRepository.cs
View file @
355dfcbe
using
Microsoft.EntityFrameworkCore
;
using
Store.Models
;
using
Store.Models
;
using
Store.Models.Users
;
using
Store.Repositories.Interfaces
;
using
Store.Repositories.Interfaces
;
namespace
Store.Repositories
;
namespace
Store.Repositories
;
...
@@ -34,11 +36,13 @@ public class UserRepository : IUserRepository
...
@@ -34,11 +36,13 @@ public class UserRepository : IUserRepository
public
User
?
GetUserById
(
int
id
)
public
User
?
GetUserById
(
int
id
)
{
{
return
_context
.
Users
.
FirstOrDefault
(
s
=>
s
.
Id
==
id
);
return
_context
.
Users
.
Include
(
u
=>
u
.
Role
).
FirstOrDefault
(
s
=>
s
.
Id
==
id
);
}
}
public
User
?
GetUserByEmail
(
string
email
)
public
User
?
GetUserByEmail
(
string
email
)
{
{
return
_context
.
Users
.
FirstOrDefault
(
s
=>
s
.
Email
==
email
);
return
_context
.
Users
.
Include
(
u
=>
u
.
Role
).
FirstOrDefault
(
s
=>
s
.
Email
==
email
);
}
}
public
List
<
Role
>
GetRoles
()
=>
_context
.
Roles
.
ToList
();
}
}
\ No newline at end of file
NewStores/Store/Services/AuthService.cs
0 → 100644
View file @
355dfcbe
namespace
Store.Services
;
public
class
AuthService
{
}
\ No newline at end of file
NewStores/Store/Services/IAuthService.cs
0 → 100644
View file @
355dfcbe
namespace
Store.Services
;
public
interface
IAuthService
{
}
\ No newline at end of file
NewStores/Store/Store.csproj
View file @
355dfcbe
...
@@ -14,4 +14,8 @@
...
@@ -14,4 +14,8 @@
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.5" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.5" />
</ItemGroup>
</ItemGroup>
<ItemGroup>
<Folder Include="Migrations" />
</ItemGroup>
</Project>
</Project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment