Przygotowanie kontekstu bazy

This commit is contained in:
Bartosz Chyzy 2018-12-01 22:41:14 +01:00
parent aabfa3b501
commit 46cf963c4a
9 changed files with 284 additions and 3 deletions

View File

@ -6,7 +6,16 @@ using System.Threading.Tasks;
namespace Forum.DataAccessLayer.Models namespace Forum.DataAccessLayer.Models
{ {
class Answer public class Answer
{ {
public int Id { get; set; }
public DateTime Date { get; set; }
public string Content { get; set; }
public string Nick { get; set; }
public ProfessionalUser Professional { get; set; }
public Question Question { get; set; }
} }
} }

View File

@ -6,7 +6,12 @@ using System.Threading.Tasks;
namespace Forum.DataAccessLayer.Models namespace Forum.DataAccessLayer.Models
{ {
class Category public class Category
{ {
public int Id { get; set; }
public string CategoryName { get; set; }
public virtual ICollection<Question> Questions { get; set; }
} }
} }

View File

@ -11,6 +11,8 @@ namespace Forum.DataAccessLayer.Models
{ {
public class ProfessionalUser : IdentityUser public class ProfessionalUser : IdentityUser
{ {
public string FullName { get; set; }
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ProfessionalUser> manager) public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ProfessionalUser> manager)
{ {
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType // Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType

View File

@ -6,7 +6,22 @@ using System.Threading.Tasks;
namespace Forum.DataAccessLayer.Models namespace Forum.DataAccessLayer.Models
{ {
class Question public class Question
{ {
public int Id { get; set; }
public string Nick { get; set; }
public DateTime PostDate { get; set; }
public string Content { get; set; }
public bool IsClosed { get; set; }
public string ReportersEmail { get; set; }
public Category Category { get; set; }
public virtual ICollection<Answer> Answers { get; set; }
} }
} }

View File

@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Data.Entity;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -19,5 +20,23 @@ namespace Forum.DataAccessLayer
{ {
return new ApplicationDbContext(); return new ApplicationDbContext();
} }
public DbSet<Answer> Answers { get; set; }
public DbSet<Question> Questions { get; set; }
public DbSet<Category> Categories { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<Question>().HasMany(a => a.Answers).WithOptional(q => q.Question);
modelBuilder.Entity<Answer>().HasOptional(p => p.Professional);
modelBuilder.Entity<Category>().HasMany(q => q.Questions).WithRequired(c => c.Category);
}
} }
} }

View File

@ -82,6 +82,10 @@
<Compile Include="Migrations\201812012107132_Db init.Designer.cs"> <Compile Include="Migrations\201812012107132_Db init.Designer.cs">
<DependentUpon>201812012107132_Db init.cs</DependentUpon> <DependentUpon>201812012107132_Db init.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Migrations\201812012140435_Configure Db Tables.cs" />
<Compile Include="Migrations\201812012140435_Configure Db Tables.Designer.cs">
<DependentUpon>201812012140435_Configure Db Tables.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\Configuration.cs" /> <Compile Include="Migrations\Configuration.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Services\MailService.cs" /> <Compile Include="Services\MailService.cs" />
@ -104,6 +108,9 @@
<EmbeddedResource Include="Migrations\201812012107132_Db init.resx"> <EmbeddedResource Include="Migrations\201812012107132_Db init.resx">
<DependentUpon>201812012107132_Db init.cs</DependentUpon> <DependentUpon>201812012107132_Db init.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="Migrations\201812012140435_Configure Db Tables.resx">
<DependentUpon>201812012140435_Configure Db Tables.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> </Project>

View File

@ -0,0 +1,29 @@
// <auto-generated />
namespace Forum.DataAccessLayer.Migrations
{
using System.CodeDom.Compiler;
using System.Data.Entity.Migrations;
using System.Data.Entity.Migrations.Infrastructure;
using System.Resources;
[GeneratedCode("EntityFramework.Migrations", "6.2.0-61023")]
public sealed partial class ConfigureDbTables : IMigrationMetadata
{
private readonly ResourceManager Resources = new ResourceManager(typeof(ConfigureDbTables));
string IMigrationMetadata.Id
{
get { return "201812012140435_Configure Db Tables"; }
}
string IMigrationMetadata.Source
{
get { return null; }
}
string IMigrationMetadata.Target
{
get { return Resources.GetString("Target"); }
}
}
}

View File

@ -0,0 +1,69 @@
namespace Forum.DataAccessLayer.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class ConfigureDbTables : DbMigration
{
public override void Up()
{
CreateTable(
"dbo.Answers",
c => new
{
Id = c.Int(nullable: false, identity: true),
Date = c.DateTime(nullable: false),
Content = c.String(),
Nick = c.String(),
Professional_Id = c.String(maxLength: 128),
Question_Id = c.Int(),
})
.PrimaryKey(t => t.Id)
.ForeignKey("dbo.AspNetUsers", t => t.Professional_Id)
.ForeignKey("dbo.Questions", t => t.Question_Id)
.Index(t => t.Professional_Id)
.Index(t => t.Question_Id);
CreateTable(
"dbo.Questions",
c => new
{
Id = c.Int(nullable: false, identity: true),
Nick = c.String(),
PostDate = c.DateTime(nullable: false),
Content = c.String(),
IsClosed = c.Boolean(nullable: false),
ReportersEmail = c.String(),
Category_Id = c.Int(nullable: false),
})
.PrimaryKey(t => t.Id)
.ForeignKey("dbo.Categories", t => t.Category_Id, cascadeDelete: true)
.Index(t => t.Category_Id);
CreateTable(
"dbo.Categories",
c => new
{
Id = c.Int(nullable: false, identity: true),
CategoryName = c.String(),
})
.PrimaryKey(t => t.Id);
AddColumn("dbo.AspNetUsers", "FullName", c => c.String());
}
public override void Down()
{
DropForeignKey("dbo.Questions", "Category_Id", "dbo.Categories");
DropForeignKey("dbo.Answers", "Question_Id", "dbo.Questions");
DropForeignKey("dbo.Answers", "Professional_Id", "dbo.AspNetUsers");
DropIndex("dbo.Questions", new[] { "Category_Id" });
DropIndex("dbo.Answers", new[] { "Question_Id" });
DropIndex("dbo.Answers", new[] { "Professional_Id" });
DropColumn("dbo.AspNetUsers", "FullName");
DropTable("dbo.Categories");
DropTable("dbo.Questions");
DropTable("dbo.Answers");
}
}
}

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Target" xml:space="preserve">
<value>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</value>
</data>
<data name="DefaultSchema" xml:space="preserve">
<value>dbo</value>
</data>
</root>