Posts by flvrm92 • 61 points
3 posts
- 
		0 votes1 answer34 viewsA: Insert into table leaving null the old recordTry using the following query DECLARE @pesoFardo DECIMAL Insert into CompraDiariaBI (DiaCompra) select top 1 fc.DtInc from FFardosCompra as fc where fc.DtInc = '2020-04-22' select @pesoFardo =… 
- 
		2 votes1 answer792 viewsQ: Entity lambda framework with include returns empty CollectionI have a select that returns chained data and plays it in a Viewmodel created for the simple reason that I cannot return all data from my table, as in the example: var data = _context.Forms… 
- 
		1 votes1 answer798 viewsQ: What are the pros and cons of using jquery in mobile development?I’m starting in hybrid development using Cordova (with visual studio) and in my research on javascript frameworks, I have found many people using Angularjs, and I was surprised that I can’t find…