0
votes
2answers
29 views
Convert Session Object to IOrderedQueryable<T>
I need to convert a Session object to an IOrderedQueryable and came up blank. I've thought of creating a wrapper, but its not working properly. Basically, I am pulling a Linq query and would like to …
0
votes
2answers
32 views
VB.NET Conversion problem when trying to convert from base class to subclass (BC30311: “Value of type ‘<type1>’ cannot be converted to ‘<type2>’”)
Hello!
Please take a look at the following code:
Public Sub Method(Of TEntity As EntityObject)(ByVal entity As TEntity)
If TypeOf entity Is Contact Then
Dim contact As Contact = entity …
1
vote
2answers
63 views
How do I convert a c++ string to a .NET String^ ?
I've been trying to figure out how to convert a string to a String in Visual Studio 2005 with no luck.
Here is the relevant code:
#include <string>
using namespace std;
#using …
0
votes
2answers
37 views
WPF binding with explicit conversion.
Hello everyone,
My question may be a repeat of other conversion question but I feel mine is different.
Here goes... [simplified example].
public class DataWrapper<T>
{
public T DataValue{ …
0
votes
2answers
149 views
String in scientific notation C++ to double conversion
Hi, I've got a database filled up with doubles like the following one:
1.60000000000000000000000000000000000e+01
Does anybody know how to convert a number like that to a double in C++?
Is there a …
0
votes
1answer
74 views
Cast function for Hibernate
Hi, all
I have tried to cast to float numbers from string in the database fields to compare with another numbers. The field in the database was String type. I have tried to use BETWEEN criteria using …
4
votes
2answers
229 views
C++ conversion statements
What is the difference between
(type)value
and
type(value)
in C++?
2
votes
2answers
154 views
Linq to SQL Int16 Gets Converted as Int32 In SQL Command
With the method parameter
Int16? id
And the Linq to SQL where clause
where !id.HasValue || m.Id == id
The resulting command text for the condition in the data context is
From the visualizer:
…
-1
votes
2answers
56 views
Converting an int representing number of cents to money
Like this question, except T-SQL instead of php.
206275947 = 2062759.47
etc.
The problem I'm running into is that an attempt to SUM the values in this column is overflowing the integer datatype in …
0
votes
2answers
82 views
How to convert long to LPCWSTR?
Hi, how can I convert long to LPCWSTR in C++? I need function similar to this one:
LPCWSTR ToString(long num) {
wchar_t snum;
swprintf_s( &snum, 8, L"%l", num);
std::wstring wnum = …
5
votes
4answers
148 views
Most succinct way to convert ListBox.items to a generic list
I am using C# and targeting the .NET Framework 3.5. I'm looking for a small, succinct and efficient piece of code to copy all of the items in a ListBox to a List<String> (Generic List).
At the …
0
votes
5answers
117 views
Confusing type conversion - 2 Bytes to Double
I was recently asked to take over a project in which waveform data is sampled from a power converter and sent to an intelligent agent where calculations are done and the appropriate actions are taken …
1
vote
1answer
30 views
Fixing older program: database text encoding, and incorrect field types.
I'm currently again working on a program from when I was, umm... less capable. It has a number of problems:
The database collation is latin1_swedish_ci. I would like to convert it to utf8. How would …
0
votes
4answers
100 views
Multiplying long values?
class Main {
public static void main (String[] args){
long value = 1024 * 1024 * 1024 * 80;
System.out.println(Long.MAX_VALUE);
System.out.println(value);
}
}
Output …
0
votes
1answer
62 views
Automatic type conversion with Castle ActiveRecord properties.
I have a Castle ActiveRecord class with a DateTime property. I am importing data from a text file, and would love to be able to do something like this:
string date_started = "09/25/2009";
MyClass …
