Edward Tanguay

12,107
reputation
2187 views

Registered User

name Edward Tanguay
member for 1 year
seen 1 hour ago
website
location Berlin, Germany
age 43
web/software developer, .NET, C#, WPF, PHP, have philosophy degree, love languages, run marathons

my tweets: http://www.twitter.com/edward_tanguay

my runs: http://www.tanguay.info/run

my code: http://www.tanguay.info/web
1h
awarded  Popular Question
1d
comment Why does this LINQ-to-SQL query get a NotSupportedException?
searchTerms.All() just iterates through the collection of strings but returns a List<Item>, there is a similar example here: stackoverflow.com/questions/1866018/…
1d
comment Why does this LINQ-to-SQL query get a NotSupportedException?
this looks good, but I can't get it to work, I keep getting: Argument data type text is invalid for argument 1 of upper function.
1d
revised Why does this LINQ-to-SQL query get a NotSupportedException?
added 2141 characters in body; edited body; added 4 characters in body
1d
revised Why does this LINQ-to-SQL query get a NotSupportedException?
deleted 3 characters in body; added 3 characters in body
1d
comment Why does this LINQ-to-SQL query get a NotSupportedException?
thanks, fixed that
1d
revised Why does this LINQ-to-SQL query get a NotSupportedException?
edited title
1d
asked Why does this LINQ-to-SQL query get a NotSupportedException?
1d
revised Does LINQ have any built-in search which supports search-machine-like searching?
edited body
1d
asked Does LINQ have any built-in search which supports search-machine-like searching?
1d
asked How can I make this LINQ search method handle more than two terms?
1d
comment How can I define a parameterless constructor in a partial LINQ-to-SQL class?
thanks, currently I've got a method called "InitializeAsDeepObject()" which I call if I need to run the extra code, which actually makes sense in a lazy-loading kind of way: I don't need to execute it if I will not be using it, but it would be interesting to know if there is a technical way to solve this problem in general with partial classes, or at least more creative workarounds
1d
asked How can I define a parameterless constructor in a partial LINQ-to-SQL class?
1d
awarded  Popular Question
2d
awarded  Mortarboard
Dec
5
asked Any C# SmartDate converters out there, e.g. “sun 11” --> 2009-12-06 11:00:00
Dec
4
comment How can I have both abstract and virtual methods in one class?
yes, I thought abstract classes could not have method bodies as well until I asked this question, but it works, thanks!
Dec
4
asked How can I have both abstract and virtual methods in one class?
Dec
4
asked How can I dynamically create and save a LINQ-to-SQL object via reflection?
Dec
3
revised How can I make a WPF ToolTip appear faster with ToolTipService.Duration?
edited title
Dec
3
revised How can I make a WPF ToolTip appear faster with ToolTipService.Duration?
deleted 94 characters in body
Dec
3
asked How can I make a WPF ToolTip appear faster with ToolTipService.Duration?
Dec
3
asked How can I make a hover info bubble appear on mouseover in WPF?
Dec
3
comment How can I get images in XAML to display as their actual size?
I reposted the code with those changes.
Dec
3
revised How can I get images in XAML to display as their actual size?
added 291 characters in body
Dec
3
comment How can I get images in XAML to display as their actual size?
I tried that but it still expands to the size of its possible area. I tried putting these settings on the StackPanel as well but it still expands.
Dec
3
asked How can I get images in XAML to display as their actual size?
Dec
3
revised How can I get my ScrollViewer to scroll the view area?
added 70 characters in body; added 4 characters in body
Dec
3
comment How can I get my ScrollViewer to scroll the view area?
It works if I set the height of the ScrollViewer or the Border, but not the StackPanel or the Window. Is there anyway to tell the ScrollViewer to become the height of the control it is in?
Dec
3
asked How can I get my ScrollViewer to scroll the view area?
Dec
3
revised How can I make WPFToolkit DatePicker highlight only the selected date?
edited title; edited title
Dec
3
asked How can I make WPFToolkit DatePicker highlight only the selected date?
Dec
3
comment How to I manipulate cell data being displayed in WPF Toolkit DataGrid at runtime?
that was exactly what I was looking for, thanks!
Dec
3
awarded  Notable Question
Dec
2
revised Why doesn’t strings.Cast<object> cast List<string> to List<object>?
added 2185 characters in body
Dec
2
asked Why doesn’t strings.Cast<object> cast List<string> to List<object>?
Dec
2
comment Why can’t I pass List<Customer> as a parameter to a method that accepts List<object>?
I'll be sending collections of other objects other than Customer, I fixed the code up a bit to reflect this.
Dec
2
revised Why can’t I pass List<Customer> as a parameter to a method that accepts List<object>?
added 55 characters in body
Dec
2
revised Why can’t I pass List<Customer> as a parameter to a method that accepts List<object>?
added 43 characters in body; added 2 characters in body
Dec
2
comment Why can’t I pass List<Customer> as a parameter to a method that accepts List<object>?
to do reflection on them and process them dynamically
Dec
2
asked Why can’t I pass List<Customer> as a parameter to a method that accepts List<object>?
Dec
2
asked How to I manipulate cell data being displayed in WPF Toolkit DataGrid at runtime?
Dec
2
revised What is currently the best, free time picker for WPF?
added 1 characters in body
Dec
2
asked What is currently the best, free time picker for WPF?
Dec
2
asked How can I format a nullable DateTime with ToString()?
Dec
2
awarded  Notable Question
Dec
1
asked Is there a syntactic sugar C# property syntax to instantiate generic collections?
Dec
1
awarded  Popular Question
Nov
30
revised How can I create a LINQ-to-SQL statement when I have table name as string?
added 615 characters in body
Nov
30
comment How can I create a LINQ-to-SQL statement when I have table name as string?
Right, but I just thought there would be a db.ExecuteQuery.GetUntypedDataTable() or something like that so you would have access to the tables if you need it, this is my current solution anyway to just get the connection string and bypass LINQ.