摘要:
C# Linq SelectMany用法学习 C# Linq Select public class Person { public string Name { get; set; } public int Age { get; set; } } List<Person> persons = new 阅读全文
摘要:
场景: 需要用select into 创建表,然后后续还有新的数据需要使用Insert into插入。结果多次测试,在insert into 的时候提示 最终发现select into 的时候字段数据短一点,然后到了insert into的时候,数据长了所以就超了,原理暂时没有特别清晰,但是是这个问 阅读全文