ef
This commit is contained in:
parent
d7b98f1448
commit
cdef03d432
BIN
MovieBase/App_Data/ApplicationDbContext.mdf
Normal file
BIN
MovieBase/App_Data/ApplicationDbContext.mdf
Normal file
Binary file not shown.
BIN
MovieBase/App_Data/ApplicationDbContext_log.ldf
Normal file
BIN
MovieBase/App_Data/ApplicationDbContext_log.ldf
Normal file
Binary file not shown.
BIN
MovieBase/App_Data/MoviesDbContext.mdf
Normal file
BIN
MovieBase/App_Data/MoviesDbContext.mdf
Normal file
Binary file not shown.
BIN
MovieBase/App_Data/MoviesDbContext_log.ldf
Normal file
BIN
MovieBase/App_Data/MoviesDbContext_log.ldf
Normal file
Binary file not shown.
17
MovieBase/Controllers/MovieController.cs
Normal file
17
MovieBase/Controllers/MovieController.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Web;
|
||||||
|
using System.Web.Mvc;
|
||||||
|
|
||||||
|
namespace MovieBase.Controllers
|
||||||
|
{
|
||||||
|
public class MovieController : Controller
|
||||||
|
{
|
||||||
|
// GET: Movie
|
||||||
|
public ActionResult Index()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
29
MovieBase/Migrations/201905041110296_Initial.Designer.cs
generated
Normal file
29
MovieBase/Migrations/201905041110296_Initial.Designer.cs
generated
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
// <auto-generated />
|
||||||
|
namespace MovieBase.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 Initial : IMigrationMetadata
|
||||||
|
{
|
||||||
|
private readonly ResourceManager Resources = new ResourceManager(typeof(Initial));
|
||||||
|
|
||||||
|
string IMigrationMetadata.Id
|
||||||
|
{
|
||||||
|
get { return "201905041110296_Initial"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
string IMigrationMetadata.Source
|
||||||
|
{
|
||||||
|
get { return null; }
|
||||||
|
}
|
||||||
|
|
||||||
|
string IMigrationMetadata.Target
|
||||||
|
{
|
||||||
|
get { return Resources.GetString("Target"); }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
139
MovieBase/Migrations/201905041110296_Initial.cs
Normal file
139
MovieBase/Migrations/201905041110296_Initial.cs
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
namespace MovieBase.Migrations
|
||||||
|
{
|
||||||
|
using System;
|
||||||
|
using System.Data.Entity.Migrations;
|
||||||
|
|
||||||
|
public partial class Initial : DbMigration
|
||||||
|
{
|
||||||
|
public override void Up()
|
||||||
|
{
|
||||||
|
CreateTable(
|
||||||
|
"dbo.Actors",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
ActorId = c.Guid(nullable: false, identity: true),
|
||||||
|
FirstName = c.String(),
|
||||||
|
LastName = c.String(),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => t.ActorId);
|
||||||
|
|
||||||
|
CreateTable(
|
||||||
|
"dbo.Movies",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
MovieId = c.Guid(nullable: false, identity: true),
|
||||||
|
Name = c.String(),
|
||||||
|
ProductionTime = c.DateTime(nullable: false),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => t.MovieId);
|
||||||
|
|
||||||
|
CreateTable(
|
||||||
|
"dbo.AspNetRoles",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
Id = c.String(nullable: false, maxLength: 128),
|
||||||
|
Name = c.String(nullable: false, maxLength: 256),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => t.Id)
|
||||||
|
.Index(t => t.Name, unique: true, name: "RoleNameIndex");
|
||||||
|
|
||||||
|
CreateTable(
|
||||||
|
"dbo.AspNetUserRoles",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
UserId = c.String(nullable: false, maxLength: 128),
|
||||||
|
RoleId = c.String(nullable: false, maxLength: 128),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => new { t.UserId, t.RoleId })
|
||||||
|
.ForeignKey("dbo.AspNetRoles", t => t.RoleId, cascadeDelete: true)
|
||||||
|
.ForeignKey("dbo.AspNetUsers", t => t.UserId, cascadeDelete: true)
|
||||||
|
.Index(t => t.UserId)
|
||||||
|
.Index(t => t.RoleId);
|
||||||
|
|
||||||
|
CreateTable(
|
||||||
|
"dbo.AspNetUsers",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
Id = c.String(nullable: false, maxLength: 128),
|
||||||
|
Email = c.String(maxLength: 256),
|
||||||
|
EmailConfirmed = c.Boolean(nullable: false),
|
||||||
|
PasswordHash = c.String(),
|
||||||
|
SecurityStamp = c.String(),
|
||||||
|
PhoneNumber = c.String(),
|
||||||
|
PhoneNumberConfirmed = c.Boolean(nullable: false),
|
||||||
|
TwoFactorEnabled = c.Boolean(nullable: false),
|
||||||
|
LockoutEndDateUtc = c.DateTime(),
|
||||||
|
LockoutEnabled = c.Boolean(nullable: false),
|
||||||
|
AccessFailedCount = c.Int(nullable: false),
|
||||||
|
UserName = c.String(nullable: false, maxLength: 256),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => t.Id)
|
||||||
|
.Index(t => t.UserName, unique: true, name: "UserNameIndex");
|
||||||
|
|
||||||
|
CreateTable(
|
||||||
|
"dbo.AspNetUserClaims",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
Id = c.Int(nullable: false, identity: true),
|
||||||
|
UserId = c.String(nullable: false, maxLength: 128),
|
||||||
|
ClaimType = c.String(),
|
||||||
|
ClaimValue = c.String(),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => t.Id)
|
||||||
|
.ForeignKey("dbo.AspNetUsers", t => t.UserId, cascadeDelete: true)
|
||||||
|
.Index(t => t.UserId);
|
||||||
|
|
||||||
|
CreateTable(
|
||||||
|
"dbo.AspNetUserLogins",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
LoginProvider = c.String(nullable: false, maxLength: 128),
|
||||||
|
ProviderKey = c.String(nullable: false, maxLength: 128),
|
||||||
|
UserId = c.String(nullable: false, maxLength: 128),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => new { t.LoginProvider, t.ProviderKey, t.UserId })
|
||||||
|
.ForeignKey("dbo.AspNetUsers", t => t.UserId, cascadeDelete: true)
|
||||||
|
.Index(t => t.UserId);
|
||||||
|
|
||||||
|
CreateTable(
|
||||||
|
"dbo.MovieActors",
|
||||||
|
c => new
|
||||||
|
{
|
||||||
|
Movie_MovieId = c.Guid(nullable: false),
|
||||||
|
Actor_ActorId = c.Guid(nullable: false),
|
||||||
|
})
|
||||||
|
.PrimaryKey(t => new { t.Movie_MovieId, t.Actor_ActorId })
|
||||||
|
.ForeignKey("dbo.Movies", t => t.Movie_MovieId, cascadeDelete: true)
|
||||||
|
.ForeignKey("dbo.Actors", t => t.Actor_ActorId, cascadeDelete: true)
|
||||||
|
.Index(t => t.Movie_MovieId)
|
||||||
|
.Index(t => t.Actor_ActorId);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Down()
|
||||||
|
{
|
||||||
|
DropForeignKey("dbo.AspNetUserRoles", "UserId", "dbo.AspNetUsers");
|
||||||
|
DropForeignKey("dbo.AspNetUserLogins", "UserId", "dbo.AspNetUsers");
|
||||||
|
DropForeignKey("dbo.AspNetUserClaims", "UserId", "dbo.AspNetUsers");
|
||||||
|
DropForeignKey("dbo.AspNetUserRoles", "RoleId", "dbo.AspNetRoles");
|
||||||
|
DropForeignKey("dbo.MovieActors", "Actor_ActorId", "dbo.Actors");
|
||||||
|
DropForeignKey("dbo.MovieActors", "Movie_MovieId", "dbo.Movies");
|
||||||
|
DropIndex("dbo.MovieActors", new[] { "Actor_ActorId" });
|
||||||
|
DropIndex("dbo.MovieActors", new[] { "Movie_MovieId" });
|
||||||
|
DropIndex("dbo.AspNetUserLogins", new[] { "UserId" });
|
||||||
|
DropIndex("dbo.AspNetUserClaims", new[] { "UserId" });
|
||||||
|
DropIndex("dbo.AspNetUsers", "UserNameIndex");
|
||||||
|
DropIndex("dbo.AspNetUserRoles", new[] { "RoleId" });
|
||||||
|
DropIndex("dbo.AspNetUserRoles", new[] { "UserId" });
|
||||||
|
DropIndex("dbo.AspNetRoles", "RoleNameIndex");
|
||||||
|
DropTable("dbo.MovieActors");
|
||||||
|
DropTable("dbo.AspNetUserLogins");
|
||||||
|
DropTable("dbo.AspNetUserClaims");
|
||||||
|
DropTable("dbo.AspNetUsers");
|
||||||
|
DropTable("dbo.AspNetUserRoles");
|
||||||
|
DropTable("dbo.AspNetRoles");
|
||||||
|
DropTable("dbo.Movies");
|
||||||
|
DropTable("dbo.Actors");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
126
MovieBase/Migrations/201905041110296_Initial.resx
Normal file
126
MovieBase/Migrations/201905041110296_Initial.resx
Normal 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>
|
29
MovieBase/Migrations/201905041114276_s.Designer.cs
generated
Normal file
29
MovieBase/Migrations/201905041114276_s.Designer.cs
generated
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
// <auto-generated />
|
||||||
|
namespace MovieBase.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 s : IMigrationMetadata
|
||||||
|
{
|
||||||
|
private readonly ResourceManager Resources = new ResourceManager(typeof(s));
|
||||||
|
|
||||||
|
string IMigrationMetadata.Id
|
||||||
|
{
|
||||||
|
get { return "201905041114276_s"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
string IMigrationMetadata.Source
|
||||||
|
{
|
||||||
|
get { return null; }
|
||||||
|
}
|
||||||
|
|
||||||
|
string IMigrationMetadata.Target
|
||||||
|
{
|
||||||
|
get { return Resources.GetString("Target"); }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
16
MovieBase/Migrations/201905041114276_s.cs
Normal file
16
MovieBase/Migrations/201905041114276_s.cs
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
namespace MovieBase.Migrations
|
||||||
|
{
|
||||||
|
using System;
|
||||||
|
using System.Data.Entity.Migrations;
|
||||||
|
|
||||||
|
public partial class s : DbMigration
|
||||||
|
{
|
||||||
|
public override void Up()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Down()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
126
MovieBase/Migrations/201905041114276_s.resx
Normal file
126
MovieBase/Migrations/201905041114276_s.resx
Normal 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>
|
23
MovieBase/Migrations/Configuration.cs
Normal file
23
MovieBase/Migrations/Configuration.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
namespace MovieBase.Migrations
|
||||||
|
{
|
||||||
|
using System;
|
||||||
|
using System.Data.Entity;
|
||||||
|
using System.Data.Entity.Migrations;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
internal sealed class Configuration : DbMigrationsConfiguration<MovieBase.Models.ApplicationDbContext>
|
||||||
|
{
|
||||||
|
public Configuration()
|
||||||
|
{
|
||||||
|
AutomaticMigrationsEnabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Seed(MovieBase.Models.ApplicationDbContext context)
|
||||||
|
{
|
||||||
|
// This method will be called after migrating to the latest version.
|
||||||
|
|
||||||
|
// You can use the DbSet<T>.AddOrUpdate() helper extension method
|
||||||
|
// to avoid creating duplicate seed data.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
13
MovieBase/Models/Actor.cs
Normal file
13
MovieBase/Models/Actor.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace MovieBase.Models
|
||||||
|
{
|
||||||
|
public class Actor
|
||||||
|
{
|
||||||
|
public Guid ActorId { get; private set; }
|
||||||
|
public string FirstName { get; set; }
|
||||||
|
public string LastName { get; set; }
|
||||||
|
public List<Movie> Movies { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -1,33 +1,49 @@
|
|||||||
using System.Data.Entity;
|
using Microsoft.AspNet.Identity;
|
||||||
|
using Microsoft.AspNet.Identity.EntityFramework;
|
||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
using System.Data.Entity;
|
||||||
using System.Security.Claims;
|
using System.Security.Claims;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNet.Identity;
|
|
||||||
using Microsoft.AspNet.Identity.EntityFramework;
|
|
||||||
|
|
||||||
namespace MovieBase.Models
|
namespace MovieBase.Models
|
||||||
{
|
{
|
||||||
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit https://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
|
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit https://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
|
||||||
public class ApplicationUser : IdentityUser
|
public class ApplicationUser : IdentityUser
|
||||||
{
|
{
|
||||||
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
|
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
|
||||||
{
|
{
|
||||||
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
|
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
|
||||||
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
|
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
|
||||||
// Add custom user claims here
|
// Add custom user claims here
|
||||||
return userIdentity;
|
return userIdentity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
|
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
|
||||||
{
|
{
|
||||||
public ApplicationDbContext()
|
public DbSet<Movie> Movies { get; set; }
|
||||||
: base("DefaultConnection", throwIfV1Schema: false)
|
public DbSet<Actor> Actors { get; set; }
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ApplicationDbContext Create()
|
public ApplicationDbContext()
|
||||||
{
|
: base("DefaultConnection", throwIfV1Schema: false)
|
||||||
return new ApplicationDbContext();
|
{
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public static ApplicationDbContext Create()
|
||||||
|
{
|
||||||
|
return new ApplicationDbContext();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnModelCreating(DbModelBuilder modelBuilder)
|
||||||
|
{
|
||||||
|
modelBuilder.Entity<Movie>().Property(x => x.MovieId).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
|
||||||
|
modelBuilder.Entity<Actor>().Property(x => x.ActorId).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
|
||||||
|
|
||||||
|
modelBuilder.Entity<Movie>().HasKey(movie => movie.MovieId);
|
||||||
|
modelBuilder.Entity<Actor>().HasKey(actor => actor.ActorId);
|
||||||
|
|
||||||
|
modelBuilder.Entity<Movie>().HasMany(movie => movie.StarringActors).WithMany(actor => actor.Movies);
|
||||||
|
base.OnModelCreating(modelBuilder);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
13
MovieBase/Models/Movie.cs
Normal file
13
MovieBase/Models/Movie.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace MovieBase.Models
|
||||||
|
{
|
||||||
|
public class Movie
|
||||||
|
{
|
||||||
|
public Guid MovieId { get; private set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public DateTime ProductionTime { get; set; }
|
||||||
|
public List<Actor> StarringActors { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -170,12 +170,24 @@
|
|||||||
<Compile Include="Controllers\AccountController.cs" />
|
<Compile Include="Controllers\AccountController.cs" />
|
||||||
<Compile Include="Controllers\HomeController.cs" />
|
<Compile Include="Controllers\HomeController.cs" />
|
||||||
<Compile Include="Controllers\ManageController.cs" />
|
<Compile Include="Controllers\ManageController.cs" />
|
||||||
|
<Compile Include="Controllers\MovieController.cs" />
|
||||||
<Compile Include="Global.asax.cs">
|
<Compile Include="Global.asax.cs">
|
||||||
<DependentUpon>Global.asax</DependentUpon>
|
<DependentUpon>Global.asax</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Migrations\201905041110296_Initial.cs" />
|
||||||
|
<Compile Include="Migrations\201905041110296_Initial.Designer.cs">
|
||||||
|
<DependentUpon>201905041110296_Initial.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Migrations\201905041114276_s.cs" />
|
||||||
|
<Compile Include="Migrations\201905041114276_s.Designer.cs">
|
||||||
|
<DependentUpon>201905041114276_s.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Migrations\Configuration.cs" />
|
||||||
<Compile Include="Models\AccountViewModels.cs" />
|
<Compile Include="Models\AccountViewModels.cs" />
|
||||||
|
<Compile Include="Models\Actor.cs" />
|
||||||
<Compile Include="Models\IdentityModels.cs" />
|
<Compile Include="Models\IdentityModels.cs" />
|
||||||
<Compile Include="Models\ManageViewModels.cs" />
|
<Compile Include="Models\ManageViewModels.cs" />
|
||||||
|
<Compile Include="Models\Movie.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Startup.cs" />
|
<Compile Include="Startup.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -190,6 +202,7 @@
|
|||||||
<Content Include="Content\Site.css" />
|
<Content Include="Content\Site.css" />
|
||||||
<Content Include="Scripts\bootstrap.js" />
|
<Content Include="Scripts\bootstrap.js" />
|
||||||
<Content Include="Scripts\bootstrap.min.js" />
|
<Content Include="Scripts\bootstrap.min.js" />
|
||||||
|
<Content Include="connections.config" />
|
||||||
<None Include="Scripts\jquery-3.3.1.intellisense.js" />
|
<None Include="Scripts\jquery-3.3.1.intellisense.js" />
|
||||||
<Content Include="Scripts\jquery-3.3.1.js" />
|
<Content Include="Scripts\jquery-3.3.1.js" />
|
||||||
<Content Include="Scripts\jquery-3.3.1.min.js" />
|
<Content Include="Scripts\jquery-3.3.1.min.js" />
|
||||||
@ -238,6 +251,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="App_Data\" />
|
<Folder Include="App_Data\" />
|
||||||
|
<Folder Include="Views\Movie\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="fonts\glyphicons-halflings-regular.woff2" />
|
<Content Include="fonts\glyphicons-halflings-regular.woff2" />
|
||||||
@ -252,6 +266,14 @@
|
|||||||
<Content Include="Scripts\jquery-3.3.1.slim.min.map" />
|
<Content Include="Scripts\jquery-3.3.1.slim.min.map" />
|
||||||
<Content Include="Scripts\jquery-3.3.1.min.map" />
|
<Content Include="Scripts\jquery-3.3.1.min.map" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Migrations\201905041110296_Initial.resx">
|
||||||
|
<DependentUpon>201905041110296_Initial.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Migrations\201905041114276_s.resx">
|
||||||
|
<DependentUpon>201905041114276_s.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
||||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||||
|
@ -10,10 +10,7 @@
|
|||||||
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
|
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
|
||||||
requirePermission="false"/>
|
requirePermission="false"/>
|
||||||
</configSections>
|
</configSections>
|
||||||
<connectionStrings>
|
<connectionStrings configSource="connections.config"/>
|
||||||
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-MovieBase-20190504120941.mdf;Initial Catalog=aspnet-MovieBase-20190504120941;Integrated Security=True"
|
|
||||||
providerName="System.Data.SqlClient" />
|
|
||||||
</connectionStrings>
|
|
||||||
<appSettings>
|
<appSettings>
|
||||||
<add key="webpages:Version" value="3.0.0.0"/>
|
<add key="webpages:Version" value="3.0.0.0"/>
|
||||||
<add key="webpages:Enabled" value="false"/>
|
<add key="webpages:Enabled" value="false"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user