group by// group byvar purchaseOrders = from row in lorealPurchaseOrderDataTable.AsEnumerable() group row by row.Field("lpo_seq_no") into grp select new { lpo_seq_no = grp.Max(r => r.Field("lpo_seq_no")), purchase_order_title = grp.Max(r => r.Field("purchase_order_title")), ..
int a = 49int b = 4"a 나누기 b" 의 결과 값은?// 자바스크립트(javascript)a / b = 12.25// C#a / b = 12 왜 C#에서는 "12"일까? 어떻게 해야 "12.25"를 구할 수 있을까?"int" 타입을 "decimal"로 수정해야 한다.(int -> decimal)즉 C#에서는 int 나누기 int는 int이다.(결과 값이 소수점이라 하더라도 int 이다.)decimal a = 49decimal b = 4a / b = 12.25
임시 리스트 만들기(temporary list)코드를 작성하다 보면 클래스(class) 형식이 아닌 임시(temporary) 형식를 가진 List가 필요할때가 있다. 상황적 예를 든다면, 다른 코드에서는 참조되지 않고한번 사용 후 폐기 되는 List 같은 경우 클래스(class) 형식 만들 필요가 없다.using System;using System.Collections.Generic;class Program{ static void Main() { // Creating a temporary list with anonymous types var tempList = new List { new { Name = "John", Age = 30 },..
Web.config DbContext using Microsoft.EntityFrameworkCore; namespace MyApp { public class MyContext :DbContext { public MyContext(DbContextOptions options) : base(options) { } public DbSet Users { get; set; } public DbSet Products { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseSqlServer(Configuration["connectionStrings:MyContext"]);..
.NET using System; using System.Web.Script.Serialization; namespace JsonDeserializationExample { class Program { static void Main(string[] args) { decimal volumeWidth; string volumeInfo = "{\"width\": 10, \"length\": 10, \"height\": 10}"; System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer(); var volumeJson = serializer.Deser..
DataTable filteredDT = dt.Clone(); try { var queryGroupByPacking = ( from virtualTable in dt.AsEnumerable() group virtualTable by new { packing_no = virtualTable.Field("packing_no") } into newTable select new { packing_no = newTable.Key.packing_no }).Take(parcel_count); foreach (var packing in queryGroupByPacking) { foreach (var item in dt.Select(string.Format("{0} = '{1}'", "packing_no", packin..
SQL Server 데이터베이스 엔진 형식 .NET Framework 형식 bigint Int64 BigInt GetSqlInt64 Int64 GetInt64 binary Byte[] VarBinary GetSqlBinary Binary GetBytes bit Boolean Bit GetSqlBoolean Boolean GetBoolean char String Char[] Char GetSqlString AnsiStringFixedLength, String GetString GetChars date 1 (SQL Server 2008 and later) DateTime Date 1 GetSqlDateTime Date 1 GetDateTime datetime DateTime DateTime GetSqlDat..
"123".Substring(0, 60) // 총 문자열 길이가 3인데 0~60까지 문자열을 자르려고 하면 "Length" 오류가 발생한다. // 그래서 "PadRight" 함수를 이용해서 최소 길이를 60으로 설정해 주면 "Length" 오류를 회피할 수 있다. "123".PadRight(60).Substring(0, 60) PadRight https://learn.microsoft.com/ko-kr/dotnet/api/system.string.padright?view=net-6.0 Substring https://learn.microsoft.com/ko-kr/dotnet/api/system.string.substring?view=net-6.0
Join(String, IEnumerable) 매개 변수 String separator 구분 기호로 사용할 문자열입니다.separator는 values에 둘 이상의 요소가 있는 경우에만 반환된 문자열에 포함됩니다. IEnumerable values 연결할 문자열을 포함하는 컬렉션입니다. List primes = new List(){1,2}; Console.WriteLine("{0}", String.Join(",", primes)); class WarehouseOutScanningInfo { string test {get;set;} string text {get;set;} } String.Join(",", new List().ToArray())
- Total
- Today
- Yesterday
- java web-mvc
- jstl(java standard tag library)
- 스프링 프레임워크(spring framewordk)
- In App Purchase
- java-개발 환경 설정하기
- 메이븐(maven)
- React
- jstl(java standard tag library)-core
- system.io
- MainActor
- 진수 변환
- error-java
- 람다식(lambda expression)
- 특정 문자를 기준으로 자르기
- 스프링 시큐리티(spring security)
- REST API
- 인텔리제이(intellij)
- java 키워드 정리
- jsp 오픈 소스
- nl2br
- 상품 등록
- await
- 표현 언어(expression language)
- System.Diagnostics
- 제품 등록
- 스프링 시큐리티(spring security)-http basic 인증
- java.sql
- 문자 자르기
- .submit()
- 스프링 프레임워크(spring framework)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |