Posts by Alexandre Dórea • 73 points
6 posts
- 
		0 votes0 answers38 viewsQ: Bundleconfig Class Registerbundles method without absolute paths or fixed UrisIf I am here it is because I have not been able to find at the moment something exact or that satisfies my problem. Let me explain: I’m using the SONARQUBE or just SONAR for code evaluation, error… 
- 
		1 votes2 answers456 viewsQ: String Field List SortingI have a List with attributes, of which I have the field of reviews, containing: Excellent, Good, Regular, Bad, and Bad. The information for this field I get from the consumption of a REST API using… 
- 
		1 votes1 answer188 viewsQ: Data Flow Task: Processes but does not write to the DatabaseI am using SQL Server Integration Services (SSIS) with SQL Server Data Tools (graphical component for Visual Studio 2015). Within my processing package (SSIS) I have streams that, depending on the… 
- 
		1 votes4 answers1276 viewsA: How to get the amount of records from a Datareader?Well, I used SQL Server and made the queries below, to avoid two database processing - one for testing and one for data - consider the examples below that I tested and see if it helps you or is what… 
- 
		1 votes4 answers1005 viewsA: Convert Int to boolCannot compare integers to booleans. An important addendum: If in your database you see 1 or 0, I’m guessing you’re using SQL Server, and, boolean in SQL Server is set to Bit (true or false; 1 or 0)… 
- 
		3 votes2 answers102 viewsA: Compare date field with current date in datagridviwerI would do something like this: if (row.Cells["PROGRAMAÇÃO"].Value != null) { DateTime dataProgramacao = DateTime.Parse(row.Cells["PROGRAMAÇÃO"].Value.ToString(); DateTime dataAtual = DateTime.Now;… c#answered Alexandre Dórea 73