上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 法一,注意不能直接传stu会有问题,写法可以改成如下: 1.控制器 // GET: Student public ActionResult Index() { var stu = _stuService.GetStuName(122); //return View(stu); stu是字符串,这么写 阅读全文
posted @ 2022-02-16 18:13 katesharing 阅读(163) 评论(0) 推荐(0) 编辑
摘要: utctime=localTime+localOffset; timeOffset is in minutes 注意在C#中,ToLocalTime()?是不是根据服务器的时间,真正要换成客户的时间,只能用timezoneoffset吗? 客户端timezoneoffset的获取方法是: var o 阅读全文
posted @ 2022-02-11 16:56 katesharing 阅读(1497) 评论(0) 推荐(0) 编辑
摘要: 测试例子如下: 1.建立测试表: CREATE Table Library ( BookId int identity (1, 1), BookName varchar(100), Dept varchar(100), SubjectId int ); 2.插入数据: DECLARE @Dept v 阅读全文
posted @ 2022-02-09 15:28 katesharing 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 语法: WHILE condition BEGIN {...statements...} END 例子: DECLARE @Counter INT SET @Counter=1 WHILE ( @Counter <= 10) BEGIN PRINT 'The counter value is = ' 阅读全文
posted @ 2022-02-09 15:01 katesharing 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 问题:sql server删除数据后,磁盘空间反而增大? 原因是:删除数据,会记录日志,所以磁盘空间反而增大。 要怎么做,才能释放空间?以下的databaseA是数据库的名称,注意数据库名称要用括号括起来 dbcc shrinkdatabase (databaseA) 解释: DBCC SHRINK 阅读全文
posted @ 2022-02-09 10:50 katesharing 阅读(3300) 评论(0) 推荐(0) 编辑
摘要: 1.Insert context.User.InsertOnSubmit(u); context.SubmitChanges(); 2.Update context.SubmitChanges(); 3.Delete context.User.DeleteOnSubmit(u); context.S 阅读全文
posted @ 2022-01-25 15:06 katesharing 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 1.ViewBag其实本质就是ViewData,只是多了层Dynamic控制。所以,使用何种方式完全取决于你个人的爱好。 2. TempData的使用: 同ViewData和ViewBag一样,TempData也可以用来向视图传递数据。只是ViewData和ViewBag的生命周期和View相同,只 阅读全文
posted @ 2022-01-12 18:21 katesharing 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 1.先定义一个Model public class CustomerViewModel { public string FullName { get; set; } public string Phone { get; set; } public int TotalAmount { get; set 阅读全文
posted @ 2022-01-12 17:15 katesharing 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 一.他们之间的关系可简单描述如下图: 二.定义如下 public interface IEnumerable<out T> : IEnumerable public interface ICollection<T> : IEnumerable<T>, IEnumerable public inter 阅读全文
posted @ 2022-01-12 11:53 katesharing 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 我的解决方案是:重新用“管理员”打开项目就解决了。 阅读全文
posted @ 2022-01-11 16:06 katesharing 阅读(735) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页