VS2015 +EF6 连接MYSQL数据库生成实体
已安装软件:VS2015 Mysql服务器使用时:使用EF设计器此时此刻,发现二逼了,咋没有mysql????(好吧,上图是用的别人的,本机已经木有这个没有mysql的界面了)好吧,下面重点:需要下载安装:1:mysql-for-visualstudi …… 阅读全文
已安装软件:VS2015 Mysql服务器使用时:使用EF设计器此时此刻,发现二逼了,咋没有mysql????(好吧,上图是用的别人的,本机已经木有这个没有mysql的界面了)好吧,下面重点:需要下载安装:1:mysql-for-visualstudi …… 阅读全文
<!-- 有关如何配置 ASP.NET 应用程序的详细信息,请访问 http://go.microsoft.com/fwlink/?LinkId=169433 --> <!-- 在AssemblyInfo.cs加入 [assembly: log4net.Config.XmlConfigurator(ConfigFile = …… 阅读全文
//MVC HTML辅助类常用方法记录(1)@Html.DisplayNameFor(model => model.Title)是显示列名,(2)@Html.DisplayFor(modelItem => item.Title)是显示列的内容(3)@Html.ActionLink("Create New", "Create")是超链接,跳转到model中的create页面,引用的是co …… 阅读全文
using System;using System.Collections.Generic;using System.Collections.Specialized;using System.ComponentModel;using System.Linq;using System.Reflection;using System.Text;using System.Threading …… 阅读全文
[HttpPost]public HttpResponseMessage Upload(){ string json = "{\"result\":\"true\"}"; return new HttpResponseMessage { Content = new StringContent(json, System.Text.Encoding.UTF8, "application/jso …… 阅读全文
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using MSCL;using System.Transactions;using AutoMapper;namespace ConsoleApplicati …… 阅读全文
using System;using System.Linq;using System.Web;using System.Web.Http;using System.Web.Security;namespace OtherApi.Auth{ public class AuthFilterOutside : AuthorizeAttribute { / …… 阅读全文
@using System.Web.Optimization@using MultiPageSimpleTask.Entitys.Dtos;@model IList@{ Layout = null; ProductDto productDto = ViewBag.SingleProduct as ProductDto;} Hello World @Sc …… 阅读全文