码迷,mamicode.com
首页 >  
搜索关键字:linq to entity 多表联合    ( 11784个结果
net core WebApi——April.Util更新之权限
[toc] 前言 在之前已经提到过,公用类库Util已经开源,目的一是为了简化开发的工作量,毕竟有些常规的功能类库重复率还是挺高的,二是为了一起探讨学习软件开发,用的人越多问题也就会越多,解决的问题越多功能也就越完善, 仓库地址: "April.Util_github" , "April.Util_ ...
分类:Windows程序   时间:2019-11-11 00:19:24    阅读次数:83
springboot+thymeleaf开发
1.底层类 package com.gxuwz.spring_thymeleaf.entity;public class Person { private String name; private Integer age; public Person(){ super(); } public Per ...
分类:编程语言   时间:2019-11-10 17:16:32    阅读次数:113
VHDL介绍
VHDL是一种硬件描述语言,它可以对电子电路和系统的行为进行描述。 制定了ieee.1164库。 使用VHDL语言描述的电路,可以进行综合和仿真。 VHDL代码3个基本组成部分:库(library)声明、实体(entity)和构造体(architecture)。 库(library)声明:列出了当前 ...
分类:其他好文   时间:2019-11-10 13:42:17    阅读次数:88
ILookup的一个小应用
ILookup是数据结构的一种,Lookup继承于它,终极父类也是 IEnumerable,能使用Linq的所有方法,Ilookup是字典的升级版本,最适合最 一对多的使用场景,可以使用索引,下面是一个应用场景,省对应多个地级市 关系 { (var itearea, _) = es.GetTCInf ...
分类:其他好文   时间:2019-11-09 23:31:37    阅读次数:115
用VHDL语言编写时序电路
触发器: (1)D锁存器 library ieee; use ieee.std_logic_1164.all; entity dff1 is port(clk:in std_logic; d:in std_logic; q:out std_logic ); end; architecture bhv ...
分类:编程语言   时间:2019-11-09 19:35:53    阅读次数:104
Cannot determine value type from string 'xxxxxx'
Cannot determine value type from string 'xxxxxx' 查了一下,意思就是字段和属性名没有对上。 反复查看代码,字段名和属性名一致。 最后翻阅资料得知是因为构造器的原因。 entity实体类全部加上无参构造和全参构造注解,完美解决。 @EqualsAndHa ...
分类:其他好文   时间:2019-11-09 15:53:56    阅读次数:797
sql server 基础语法2
别名,选择,查询,排序,去重,筛选 select * from UserInfo as ui --起别名 select UserName,UserPwd --指定选择的列 from UserInfo as ui select UserName as name --给列起别名 from UserInf ...
分类:数据库   时间:2019-11-09 09:19:31    阅读次数:98
复杂Linq语句写法
从网上收藏的复杂Linq语句写法 1、case when: 原型: sql原型: SELECT ProductID, Name, Color, CASE WHEN Color = 'Red' THEN StandardCost WHEN Color = 'Black' THEN StandardCo ...
分类:其他好文   时间:2019-11-08 19:16:42    阅读次数:99
springboot模板
Thymeleaf模板 关于Thymeleaf的优点,我只说一条:它就是html页面。 Thymeleaf的pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-t ...
分类:编程语言   时间:2019-11-08 19:06:43    阅读次数:88
路径中获取文件全路径、目录、扩展名、文件名称
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace TBQDLKW { class Program { static void ...
分类:其他好文   时间:2019-11-08 12:01:46    阅读次数:378
11784条   上一页 1 ... 89 90 91 92 93 ... 1179 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!