티스토리 뷰
Entity Framework(DbContext & C#만으로 구현)-.edmx 파일 생성하지 않음.
James Wetzel 2018. 12. 12. 16:591. Entity Framework 설치
2. Web.config 설정
<connectionStrings>
<add name="shipConnectionString" connectionString="Data Source=0.0.0.0,3750;Initial Catalog=databaseName;User ID=id;Password=123456" providerName="System.Data.SqlClient"/>
</connectionStrings>
3. DbContext 클래스 생성(ShipDbContext)
using System.Collections.Generic;
using System.Data.Entity;
using System.Data.SqlClient;
using System.Linq;
namespace WebApplication.ORM
{
public class ShipDbContext : DbContext
{
public ShipDbContext() : base("name=shipConnectionString")
{
//Disable initializer
Database.SetInitializer<ShipDbContext>(null);
}
public virtual IList<QprimeTypeListEntity> GetQprimeTypeList(string svc_nation_cd)
{
SqlParameter[] sqlParameters = new SqlParameter[] {
new SqlParameter("svc_nation_cd", svc_nation_cd)
};
return this.Database.SqlQuery<QprimeTypeListEntity>("Qprime_SelectListQprimeType @svc_nation_cd", sqlParameters).ToList<QprimeTypeListEntity>();
}
}
}
4. Entity 클래스 생성
using System;
namespace WebApplication.ORM
{
public class QprimeTypeListEntity
{
public Nullable<int> Id { get; set; }
public string TypeName { get; set; }
}
}
5. Controller 생성 및 호출
using System.Collections.Generic;
using System.Web.Mvc;
using WebApplication.ORM;
namespace WebApplication.Controllers
{
public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
ShipDbContext shipDbContext = new ShipDbContext();
IList<QprimeTypeListEntity> qprimeTypeListEntities = shipDbContext.GetQprimeTypeList("US");
return View();
}
}
}
- Total
- Today
- Yesterday
- React
- await
- System.Diagnostics
- .submit()
- java.sql
- 람다식(lambda expression)
- 표현 언어(expression language)
- 스프링 프레임워크(spring framework)
- 메이븐(maven)
- REST API
- jstl(java standard tag library)-core
- MainActor
- system.io
- 특정 문자를 기준으로 자르기
- 진수 변환
- 상품 등록
- java web-mvc
- jsp 오픈 소스
- In App Purchase
- 스프링 시큐리티(spring security)
- nl2br
- jstl(java standard tag library)
- error-java
- 스프링 시큐리티(spring security)-http basic 인증
- java 키워드 정리
- 스프링 프레임워크(spring framewordk)
- java-개발 환경 설정하기
- 문자 자르기
- 제품 등록
- 인텔리제이(intellij)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |