上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: 第一步:为我们的上下文启用迁移支持。在包管理器的控制台(Package Manager Console)中执行命令:Enable-Migrations。第二步:Add-Migration 【Name】,将会基于你对模型的修改创建一个迁移的脚手架,项目中会生成一个类似201305290607028_【Name】之类的文件。第三步:Update-Database,将没有提交的修改提交到数据库。个人应用时在此处出现了一个error:CREATE DATABASE permission denied in database 'master'.解决方法是指明数据库连接字符串,原因暂时不清 阅读全文
posted @ 2013-05-29 15:28 super 86 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 public class EFDbContext : DbContext2 {3 protected override void OnModelCreating(System.Data.Entity.DbModelBuilder modelBuilder)4 {5 modelBuilder.Entity<Class>().Property(object => object.property).HasPrecision(12, 10);6 7 base.OnModelCreating(modelBuilder);8 }9 }1 public De... 阅读全文
posted @ 2013-04-25 15:45 super 86 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <vector> 3 using namespace std; 4 5 int _tmain(int argc, _TCHAR* argv[]) 6 { 7 int len; 8 cin>>len; 9 vector<int> array(len);10 for(int j=0;j<len;j++)11 {12 cin>>array[j];13 }14 int s=0;15 for(int i=0;i<len;i++)16 ... 阅读全文
posted @ 2013-04-25 15:38 super 86 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 #include "stdafx.h" 2 #include <iostream> 3 #include <vector> 4 using namespace std; 5 6 int _tmain(int argc, _TCHAR* argv[]) 7 { 8 int times; 9 cin>>times;10 for(int i=0;i<times;i++)11 {12 int len;13 int command;14 cin>>len>>command;15 vector<int>. 阅读全文
posted @ 2013-04-25 15:01 super 86 阅读(192) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include <iostream>using namespace std;void _tmain(int argc, _TCHAR* argv[]){ int temp[10]; for(int i=0;i<10;i++) { cin>>temp[i]; int k=i; int key=temp[k]; while(k>0&&temp[k-1]<key) { temp[k]=temp[k-1]; temp... 阅读全文
posted @ 2013-04-23 19:35 super 86 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 摘自MSDN:This method is called when the model for a derived context has been initialized, but before the model has been locked down and used to initialize the context. The default implementation of this method does nothing, but it can be overridden in a derived class such that the model can be further 阅读全文
posted @ 2013-04-05 19:46 super 86 阅读(1065) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Address_Manager</title> <link rel="Stylesheet" ty 阅读全文
posted @ 2013-03-31 15:33 super 86 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 今天做一个抓取网页的小程序,使用EntityFramework技术、webapi等。项目配置文件应该是以主程序的app.config为主,主程序配置文件中缺少了数据库的连接字符串,所以使得数据保存全部失败。 阅读全文
posted @ 2013-03-18 20:04 super 86 阅读(134) 评论(0) 推荐(0) 编辑
摘要: var ps = Ext.select('p');这样你就可以对所要获取的元素迚行操作了,select()方法返回的是Ext.CompositeElement对象,可以通过其中的each()方法对其所包吨的节点迚行遍历:ps.each(function(el){ el.highlight(); });弼然,如果你要是对获取的所有元素迚行相同的操作,可以直接应用亍CompositeElement对象上,如:ps.highlight();戒是: Ext.select('p').highlight();弼然,select参数还可以更复杂一些,其中可以包括W3C Css 阅读全文
posted @ 2013-03-15 19:29 super 86 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 有三种方法来做这件事:通过 id 找到 HTML 元素通过标签名找HTML 元素通过类名找到 HTML 元素通过 id 查找 HTML 元素在DOM 中查HTML 元素的最简单的方法,是通过使用元素id。实例本例查找 id="intro" 元素:var x=document.getElementById("intro");通过标签名查HTML 元素实例本例查找 id="main" 的元素,然后查找 "main" 中的所有<p> 元素var x=document.getElementById(" 阅读全文
posted @ 2013-03-13 15:44 super 86 阅读(348) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页