mssql

  1. D

    Scaffolding after install the program

    Hi everyone, Is it possible to do scaffolding after install our program and run it? Is using powershell right way to go to do this? Or what else can I do? I need any advice of you. Thank you.
  2. D

    Run Scaffolding Command in C# Code with Powershell Runspace

    Hi, I need to do scaffolding in code. To do this I wrote this method; public string RunScript(string scriptText) { string dir = @"C:\Users\demetsen\source\repos\ScaffoldingInCode\ScaffoldingInCode"; Directory.SetCurrentDirectory(dir); Runspace...
  3. etkmlm

    Resolved ASP.NET Code First Paradox

    Hi, I'm using MVC5 with .NET 4.6.1. I want to users can follow each other but don't know how can I do this.. I tried these things: public class User { [Key] public int ID { get; set; } public String Avatar { get; set; } public String State { get; set; }...
Back
Top Bottom