User HAdes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T14:55:03Zhttp://stackoverflow.com/feeds/user/11989http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/457176/how-do-i-determine-a-public-holiday-in-sql-server4How do I determine a public holiday in Sql server?HAdes2009-01-19T10:34:07Z2009-11-17T20:17:03Z
<p>I have an application written in c# that cannot run on a public holiday or a weekend. I've looked around a bit and haven't found anywhere (official) that provide all the public holidays for the next say 50 years. </p>
<p>If I can get these, I will simply bulk insert them into my sql server Holidays table and use that. However, I can't find this data anywhere.</p>
<p>Does anyone know if Sql server have any support for public holidays or an algorithm of some sort to work them out? Or anyone got somewhere official that I can bulk insert from.</p>
<p>Thanks.</p>
<p>EDIT: For arguments sake lets just assume we want public holidays in England!!!!</p>
http://stackoverflow.com/questions/1661547/how-do-you-set-permissions-on-a-schema-that-has-objects-accessing-other-schemas1How do you set permissions on a schema that has objects accessing other schemas?HAdes2009-11-02T14:13:13Z2009-11-04T13:37:29Z
<p>I have 2 schemas and one of the objects in the first schema needs to access an object in the other schema. For example:</p>
<pre><code>CREATE VIEW I.ITest
AS
SELECT 1 as TestColumn
GO
CREATE VIEW O.OTest
AS
SELECT * FROM I.ITest
GO
EXEC ('SELECT * FROM O.OTest') AS USER = 'TestUser'
DROP VIEW O.OTest
DROP VIEW I.ITest
</code></pre>
<p>In the above example, TestUser only has access to the 'O' Schema. So the select itself works fine, but because the view is doing a select from another schema 'I' then it fails with the error:</p>
<blockquote>
<p>The SELECT permission was denied on the object 'ITest', database 'MyDB', schema 'I'.</p>
</blockquote>
<p>To get around this I can give the 'O' schema permission to access the 'I' schema, but this doesn't sound right and looks to be bypassing the schema permissions.</p>
<p>What can be done? Am I doing this all wrong? Whats the best practice in this scenario? </p>
<p>Thanks</p>
<p><strong>UPDATE</strong>: My schemas were owned by different db roles so I got around this problem by simply changing the owner of both to dbo and then giving the db role permission to access the schema. This meant that the owner dbo could see everything and I could then give specific permission to the db role only and the rest of the db objects were not available unless via this schema. Thanks for your help</p>
http://stackoverflow.com/questions/1660256/in-sql-server-2005-how-do-i-setup-permissions-using-schemas-and-db-roles0In Sql Server 2005, how do I setup permissions using schemas and db roles?HAdes2009-11-02T09:37:40Z2009-11-02T10:34:10Z
<p>Here is my current setup:
Database Role - MyDbRole
Schema - MySchema
User - MyUser</p>
<p>MySchema is owned by MyDbRole.
MyUser is mapped to my database that contains MyDbRole and MySchema. It is mapped using the MyDbRole database role.</p>
<p>I thought that MyUser would now have access to any object within the MySchema schema, because it is owned by MyDbRole, which I have assigned to the user. However, this isn't the case and only until I give db_owner or db_dataReader does it give access.</p>
<p>I have tried using the 'securables' bit of the dbrole properties and adding all objects in schema, but this requires me to go through each object and give individual permissions (which totally takes me back to the 2000 way).</p>
<p>Am I missing something? Is my setup somehow all wrong? Should this work or is it not possible to assign a user to a dbrole that owns a schema? </p>
http://stackoverflow.com/questions/136766/structured-uat-approaches1Structured UAT approachesHAdes2008-09-25T23:05:30Z2009-10-28T06:31:38Z
<p>As a developer I often release different versions of applications that I want tested by users to identify bugs and to confirm requirements are being met.</p>
<p>I give the users a rough idea of what I have changed or new features that need testing, but this seems a bit slap-dash and not very well strucutured.</p>
<p>I'd like to know what approaches or procedures others take when asking for UAT during iterative development.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c23How to properly clean up Excel interop objects in C#HAdes2008-10-01T17:18:43Z2009-10-22T15:08:04Z
<p>I'm using the Excel interop in C# (ApplicationClass) and have placed the following code in my finally clause:</p>
<pre><code> while (System.Runtime.InteropServices.Marshal.ReleaseComObject(excelSheet) != 0) { }
excelSheet = null;
GC.Collect();
GC.WaitForPendingFinalizers();
</code></pre>
<p>Although, this kind of works the Excel.exe process is still in the background even after I close Excel. It is only released once my application is manually closed. </p>
<p>Anyone realise what i am doing wrong, or has an alternative to ensure interop objects are properly disposed of.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1578428/in-linqtosql-is-it-possible-to-have-a-custom-insert-method-that-auto-syncs-the-p0In LinqToSql, is it possible to have a custom Insert method that Auto-Syncs the primary key?HAdes2009-10-16T14:35:28Z2009-10-19T08:29:55Z
<p>I can do this if I leave the Entity's Insert method as 'Use Runtime' and have it deal with the inserts directly, but I need to use an SP. </p>
<p>I have tried to simply return the @@Identity from sql server and then assign this to the ID but this causes a change notification and LinqToSql thinks it has changed, even though it's just the ID. </p>
<p>So basically I need a way of assigning the primary key on inserts via an sp, without it triggering the change notification.</p>
<p>Is this possible, if so how?</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1421052/in-the-orm-designer-why-dont-the-server-objects-get-refreshed-properly-with-new2In the ORM designer, why don't the server objects get refreshed properly with new changes?HAdes2009-09-14T11:42:20Z2009-10-16T22:03:14Z
<p>Whenever I use the ORM deisgner in LinqToSql I have real problems trying to get the latest objects from the server explorer after i've updated them in the database.</p>
<p>For example, I have dragged in a stored procedure to handle my insert/updates, which creates the method for me to call. Problem is I then have to go and change one of the parameters of the sp in the database. When I drag the sp back into the designer, my new parameter isn't there. Even after refreshing the server explorer object (db level) it still reverts to the previous parameters. When I look at the parameters in the server explorer it shows my new parameter, but doesn't bring it in when i drag it on.</p>
<p>A work around is to close the whole of VS and then it works. This is obviously not ideal, so any help on this would be great.</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1472557/in-linqtosql-how-do-you-enable-change-tracking-on-an-entitys-custom-property0In LinqToSql how do you enable change tracking on an entity's custom property?HAdes2009-09-24T15:48:30Z2009-10-16T22:02:37Z
<p>For other reasons, i've had to create my own property in an Entity in the ORM, which has is a type of another entity (had issues with associations so did it this way instead).</p>
<p>The problem is that whenever I make a change to that property, it isn't being flagged as a change so I cannot call SubmitChanges on it.</p>
<p>So basically my question is, is there a way of forcing a property to be tracked for changes for when I call SubmitChanges?</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1388667/can-i-legally-take-my-works-visual-studio-2008-cd-and-install-it-at-home1Can I legally take my work's Visual Studio 2008 CD and install it at home?HAdes2009-09-07T10:32:51Z2009-10-06T15:04:17Z
<p>I have been told that Microsoft allow employees of any company that uses it's products, such as Visual Studio 2008 or Office, to install them on their home machines.</p>
<p>Before I do so, is this correct? It doesn't sound right to me, but I know microsoft have something called the "Home Use Program" but I'm not familiar with it and haven't seen VS2008 mentioned at all.</p>
<p>Many thanks.</p>
http://stackoverflow.com/questions/943898/how-can-i-get-a-list-of-built-in-routed-events-in-wpf0How can I get a list of built-in routed events in WPFHAdes2009-06-03T09:51:48Z2009-09-24T19:01:19Z
<p>I'm just starting out with WPF and need some help with routed events. I have added a datagrid with some animation, but i can't seem to find anywhere that shows me a list of routed events to use on the datagrid, or any other control for that matter. Seems to be a guessing game so far. </p>
<p>I thought the datagrid standard events, such as CellEditEnding, was it but they are not as it says "Invalid event name".</p>
<p>The example I copied used a MouseEnter routed event, but i don't know what else there is for me to use (except my own of course).</p>
<pre><code><Window.Triggers>
<EventTrigger RoutedEvent="my:DataGrid.MouseEnter">
<BeginStoryboard Storyboard="{StaticResource MyAnimation}"/>
</EventTrigger>
</Window.Triggers>
</code></pre>
<p>thanks in advance for you help</p>
http://stackoverflow.com/questions/200610/what-is-the-biggest-coding-error-mistake-ever9What is the biggest coding error/mistake ever...HAdes2008-10-14T10:08:24Z2009-09-24T17:23:54Z
<p>I have done a few silly things in my time as a developer and have therefore learnt the hard way in some respects. Here are a few examples:</p>
<blockquote>
<ul>
<li>Missing out the WHERE clause in a DELETE tableName sql statement. </li>
<li>No error handling in an application that was using files & db connections.</li>
<li>Releasing an application without testing (at least the basics).</li>
</ul>
</blockquote>
<p>I'm hoping I don't get caught out again in the future with anything else, so would like to know what other coding errors/mistakes like these other people have done.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1431723/how-do-you-validate-a-clr-property-after-it-has-been-updated-instead-of-before-wh0How do you validate a clr property after it has been updated instead of before when implementing IDataErrorInfo?HAdes2009-09-16T08:37:54Z2009-09-18T18:44:41Z
<p>I have implemented IDataErrorInfo in one of my classes to validate a property of that class. The property is bound to a control on my wpf user control. The validataion works fine, except there is one vital flaw. </p>
<p>It seems to be calling the IDataErrorInfo member public string this[string columnName] before the property is updated, so when I check the value of the property being changed it contains the previous value not the one just entered. Therefore, the validation is always one step behind. This means that I can't check for incorrect values that have just been entered.</p>
<p>Is there any way of forcing this validation to be called after the property has been updated and not before. I have tried changing the UpdateSourceTrigger to both LostFocus and PropertyChanged but they still report the previous value, just at different times.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1404410/in-a-wpf-combobox-is-it-wise-to-use-a-string-type-value-as-the-selectedvalue-and0In a WPF combobox is it wise to use a string type value as the SelectedValue and SelectedValuePath?HAdes2009-09-10T10:06:16Z2009-09-10T10:11:01Z
<p>Following on from <a href="http://stackoverflow.com/questions/1301165/should-i-design-a-table-with-a-primary-key-of-varchar-or-int">my other post</a> about primary keys I am wondering if there is a performance impact in using a string value as the key in WPF comboboxes. For example</p>
<pre><code><ComboBox x:Name="TestCB" ItemsSource="{Binding Path=Products}" DisplayMemberPath="ProductName"
SelectedValuePath="ShortCode" SelectedValue="{Binding Path=SelectedProduct.ShortCode, Mode=TwoWay}"/>
</code></pre>
<p>As ShortCode and SelectedProduct.ShortCode are of type <strong><em>string</em></strong>, would it be slower to find the SelectedItem when the source changes as opposed to having an <strong><em>int</em></strong> such as ProductID. If so, what is the logic behind this i.e. no full text indexing.</p>
http://stackoverflow.com/questions/950501/how-do-you-handle-a-combobox-selectionchanged-in-mvvm/1400469#14004691Answer by HAdes for How do you handle a ComboBox SelectionChanged in MVVM?HAdes2009-09-09T15:42:25Z2009-09-09T15:42:25Z<p>I'm not sure if what you're after is possible, but the way I do it is to simply bind the SelectedItem to a property on view model. Then within the property setter, I call any custom code that I want to happen i.e. setting other properties based on rule. If I need the selected item to be bound to an object aswell (for other bound controls to update) I set this in the setter too and send out a notification.</p>
http://stackoverflow.com/questions/1388811/whats-the-point-in-setting-up-dependency-properties-when-propertychangedeventha1What's the point in setting up dependency properties, when PropertyChangedEventHandler does the job?HAdes2009-09-07T11:05:33Z2009-09-07T18:40:56Z
<p>Currently I have use the following approach to setup change notification on any of my properties that I bind to in xaml:</p>
<pre><code> class MyClass : INotifyPropertyChanged
{
string name;
public string Name
{
get { return name; }
set
{
name = value;
NotifyPropertyChanged("Name");
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
</code></pre>
<p>However, I've seen that to implement a dependency property I need to do stuff like registering it and setting callbacks etc, which in turn will just end up calling the above code. </p>
<p>So what's the point of setting all the extra boiler plate stuff for dependency properties when I can just use the above approach?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/320284/what-is-wrong-with-polling13What is wrong with PollingHAdes2008-11-26T10:52:20Z2009-08-27T08:45:11Z
<p>I have heard a few developers recently say that they are simply polling stuff (db, files etc) to determine when something has changed and then run a task, such as an import.</p>
<p>I'm really against this idea and feel that utilising available technology such as Remoting, WCF etc would be far better than polling.</p>
<p>However, I'd like to identify the reasons why other people prefer one approach over the other and more importantly how I can convince others that polling is wrong in this day and age.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1301165/should-i-design-a-table-with-a-primary-key-of-varchar-or-int2Should I design a table with a primary key of varchar or int?HAdes2009-08-19T16:40:36Z2009-08-21T18:43:31Z
<p>I know this is subjective, but I'd like to know peoples opinions and hopefully some best practices that I can apply when designing sql server table structures.</p>
<p>I personally feel that keying a table on a fixed (max) length varchar is a no-no, because it means having to also propogate the same fixed length across any other tables that use this as a foreign key. Using an int, would avoid having to apply the same length across the board, which is bound to lead to human error, i.e. 1 table has varchar (10), and the other varchar (20).<br />
This sounds like a nightmare to initially setup, plus means future maintaining of the tables is cumbersome too. For example, say the keyed varchar column suddenly becomes 12 chars instead of 10. You now have to go and update all the other tables, which could be a huge task years down the line.</p>
<p>Am I wrong? Have I missed something here? I'd like to know what others think of this and if sticking with int for primary keys is the best way to avoid maintainace nightmares.</p>
<p>Thanks in advance. </p>
http://stackoverflow.com/questions/1254455/in-a-wpf-tabcontrol-how-can-i-dynamically-select-a-tab-page-from-an-objects-type0In a WPF tabControl how can I dynamically select a tab page from an object's type?HAdes2009-08-10T11:51:48Z2009-08-21T10:15:34Z
<p>I've implemented the MVVM pattern and have some viewModels that are bound to tab pages on a tab control. </p>
<p>When a specific object type changes (i.e. from Car myVehical, to Bike myVehical), then i want the relevant tab page to become selected.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1271619/why-is-there-a-difference-in-error-handling-clr-procedures-in-sql-server-20050Why is there a difference in error handling clr procedures in sql server 2005?HAdes2009-08-13T12:19:26Z2009-08-13T15:54:23Z
<p>I am using a clr procedure in one of my normal stored procs and i'm experiencing an odd error handling situation. Check the following code, it works as expected...</p>
<pre><code>BEGIN TRY
create table #test(id varchar(2))
insert #test
select '123'
select * from #test
END TRY
BEGIN CATCH
select 'an error occured but was handled'
END CATCH
</code></pre>
<p>However, if I use a clr stored proc that returns a value too large, say '123':</p>
<pre><code>BEGIN TRY
create table #test(id varchar(2))
insert #test
EXEC my_clr_proc
select * from #test
END TRY
BEGIN CATCH
select 'an error occured but was handled'
END CATCH
</code></pre>
<p>..I get the following 'String or binary data would be truncated' as well as my error in the catch statement. So the original error is being thrown even though i'm saying i'll handle it.</p>
<p>It seems there is something different about the way it is dealing with the error just because the data is returned from a clr procedure. I'm not sure why and I need to know the best way to handle this.</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1255901/in-sharepoint-how-do-you-setup-a-column-for-person-or-group-with-a-default-val1In Sharepoint, how do you setup a column for 'person or group' with a default value?HAdes2009-08-10T16:34:41Z2009-08-13T09:02:34Z
<p>Using the issue tracker in sharepoint 2007, I want to know how to set a default user to the my assigned to column. Other column types include a 'default value' option, but for some reason the 'person or group' doesn't.</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1255901/in-sharepoint-how-do-you-setup-a-column-for-person-or-group-with-a-default-val/1270883#12708830Answer by HAdes for In Sharepoint, how do you setup a column for 'person or group' with a default value?HAdes2009-08-13T09:02:34Z2009-08-13T09:02:34Z<p>For my specific situation, I ended up just using the 'created by' column and ditching the 'assigned to' column. This gets set by default as the person who created the issue, so effectively becomes my default value.</p>
http://stackoverflow.com/questions/1254713/how-do-you-properly-test-the-view-in-mvvm1How do you properly test the view in MVVM?HAdes2009-08-10T12:54:30Z2009-08-10T13:18:21Z
<p>I've seen a few articles on unit testing view models in MVVM and how the tests themselves are consumers of the view models, testing the functionality of the viewModel and model. However, I'm left wondering how I go about testing the views (UI) to ensure they are wired up to my view models properly. I don't want to write a test that, for instance, presses a button to make sure something is written to the db as this is effectively testing my VM, which i've already done. </p>
<p>For instance, I'd like to be able to write a test to make sure that a button is wired up to a specific command. Therefore preventing anyone from coming along and removing the button's command, making it no longer functional. </p>
<p>Is this possible? thanks.</p>
http://stackoverflow.com/questions/1230055/in-wpf-how-do-you-access-an-object-defined-in-window-xaml-from-a-nested-user-cont0In WPF how do you access an object defined in Window.xaml from a nested user control ?HAdes2009-08-04T21:38:24Z2009-08-04T21:48:15Z
<p>I have a situation where I need to access an object that has been defined in one user control from within a user control nested 2 levels deep. Take the following for example:</p>
<pre><code>public class MyClass
{
public MyClass()
{
MyData = new MyDataProvider();
}
public MyDataProvider MyData;
public string SelectedValue;
}
public class MyDataProvider
{
public MyDataProvider()
{
MyList = new List<string>() { "Test1", "Test2", "Test3" };
}
public List<string> MyList;
}
</code></pre>
<p>Window.xaml</p>
<pre><code><Window.DataContext>
<my:MyClass></my:MyClass>
</Window.DataContext>
<Grid>
<my:UC1></my:UC1>
</Grid>
</code></pre>
<p>UC1.xaml</p>
<pre><code><Grid Height="Auto" Width="316">
<my:UC2 Margin="0,0,41,52" DataContext="{Binding Path=MyData}"/>
<TextBox Text="{Binding SelectedValue}" Margin="22,73,119,113" />
</Grid>
</code></pre>
<p>UC2.xaml</p>
<pre><code> <Grid>
<StackPanel>
<Label Content="My List"/>
<ComboBox Name="comboBox1" ItemsSource="{Binding Path=MyList}"
SelectedItem="{Binding Path=SelectedValue}"/>
</StackPanel>
</Grid>
</code></pre>
<p><em>Please ignore the missing Property changed events etc as it's just for example purposes</em></p>
<p>The above basically shows you my setup. 2 nested user controls where the bottom level one, UC2, tries to set the selected combobox item to the SelectedValue property of the object defined in the Window xaml (MyClass). Problem is that the way I have specified the SelectedItem binding doesn't work. I need to tell it to look up the tree to the Window. This is what I don't know how to do.</p>
<p>Please help.</p>
<p>Thanks alot.</p>
http://stackoverflow.com/questions/1212093/how-do-you-group-by-one-column-and-retrieve-a-row-with-the-minimum-value-of-anoth/1213130#12131301Answer by HAdes for How do you group by one column and retrieve a row with the minimum value of another column in T/SQL?HAdes2009-07-31T15:18:03Z2009-07-31T15:18:03Z<p>Another option would be something along the lines of the following:</p>
<pre><code>DECLARE @TEST TABLE( ID int, Foo int, Bar int, Blagh int)
INSERT INTO @TEST VALUES (1,10,20,30)
INSERT INTO @TEST VALUES (2,10,5,1)
INSERT INTO @TEST VALUES (3,20,50,70)
INSERT INTO @TEST VALUES (4,20,75,12)
SELECT Id, Foo, Bar, Blagh
FROM (
SELECT id, Foo, Bar, Blagh, CASE WHEN (Min(Bar) OVER(PARTITION BY FOO) = Bar) THEN 1 ELSE 0 END as MyRow
FROM @TEST) t
WHERE MyRow = 1
</code></pre>
<p>Although this still requires a sub-query it does eliminate the need for joins. </p>
<p>Just another option.</p>
http://stackoverflow.com/questions/1160565/how-do-you-setup-custom-insert-update-delete-methods-to-inherited-sub-clasess-in0How do you setup custom Insert/Update/Delete methods to inherited sub-clasess in LinqToSql?HAdes2009-07-21T17:24:58Z2009-07-24T17:07:54Z
<p>I have created a bass class in LinqToSql which has 2 sub-classes. I need to assign a different stored procedure to each of the sub-classes custom update methods. Doing this is fine, but I get an error of "Invalid object name 'xxx'".</p>
<p>e.g. </p>
<pre><code>DataClasses1DataContext dc = new DataClasses1DataContext();
Class2 c2 = new Class2() { ID = 1, Name = "test", Type = "s" };
dc.Class1s.InsertOnSubmit(c2);
dc.SubmitChanges();
</code></pre>
<p>...Class2 inherits Class1 and Class2 has it's own custom INSERT method (which is what i want it to execute).</p>
<p>thanks.</p>
<p><strong>SOLUTION</strong>: Bryan's answer gave me what I was after. Here is the code I added to the class behind the designer:</p>
<pre><code>partial class DataClasses1DataContext
{
partial void InsertClass1(Class1 instance)
{
instance.Insert(this);
}
}
partial class Class1
{
public abstract void Insert(DataClasses1DataContext dataContext);
}
partial class Class2
{
public override void Insert(DataClasses1DataContext dataContext)
{
dataContext.InsertSP(((System.Nullable<int>)(ID)), Name);
}
}
partial class Class3
{
public override void Insert(DataClasses1DataContext dataContext)
{
dataContext.InsertSP2((System.Nullable<int>)(ID), Name);
}
}
</code></pre>
<p>The InsertSP and InsertSP2 stored procs were dragged on using the designer, to save me the hassle of having to manually call the sp. </p>
<p>ALL CREDIT TO BRYAN FOR THIS ONE</p>
http://stackoverflow.com/questions/1158340/how-do-you-clear-changes-in-linqtosql1How do you clear changes in LinqToSql?HAdes2009-07-21T10:15:37Z2009-07-21T10:30:21Z
<p>I have a combobox in my WPF app that is databound to my list of objects in my View Model. When the user makes changes to the selected object and then selects another item before saving, I need to clear the changes made.</p>
<p>I thought I could use dataContext.GetChangeSet().Updates.Clear() but for some reason the collection is read-only.</p>
<p>I've also tried to use dataContext.Refresh but this doesn't work either as the object doesn't exist in the database, I created it manually from an SP.</p>
<p>Please help. thanks.</p>
http://stackoverflow.com/questions/1069227/how-do-i-make-my-linq-to-sql-entity-implement-inotifypropertychanged1How do I make my Linq to Sql entity implement INotifyPropertyChangedHAdes2009-07-01T13:47:24Z2009-07-01T13:58:54Z
<p>I've manually created some classes in the Linq-to-sql designer and when looking in the xx.designer.cs file the class doesn't implement INotifyPropertyChanged interface. </p>
<p>This works if I create the entity by dragging from the server explorer.</p>
<p>Does anyone know why this is and if I am doing something wrong or if there is somewhere to set this up in the designer.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/88222/stored-procs-best-way-to-pass-messages-back-to-user-application3Stored Procs - Best way to pass messages back to user applicationHAdes2008-09-17T22:12:27Z2009-06-16T07:24:23Z
<p>I'd like know what people think about using RAISERROR in stored procedures to pass back user messages (i.e. business related messages, not error messages) to the application. </p>
<p>Some of the senior developers in my firm have been using this method and catching the SqlException in our C# code to pick up the messages and display them to the user. I am not happy with this method and would like to know how other people deal with these types of user messages from stored procs.</p>
http://stackoverflow.com/questions/964184/how-to-put-forward-a-good-business-case-for-wpf6How to put forward a good business case for WPF?HAdes2009-06-08T10:09:48Z2009-06-08T12:22:00Z
<p>There are many questions about WPF vs Winfoms and the benefits of migrating to wpf, however I have a more specific question, which is probably subjective but would definitely help me justify using WPF.</p>
<p>Being in an internal IT department, the business users are not bothered how we get to the end product, but are also not fussed about things like animations, styling etc. </p>
<p>I can put forward some technical reasons, but how can i convince them and the management that WPF will be beneficial to them now and in the long run. </p>
<p>Any examples of improvements to UI controls etc would help.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/197753/linq-to-sql-associations-how-to-change-the-value-of-associated-field1LINQ to SQL associations - how to change the value of associated fieldHAdes2008-10-13T14:24:27Z2009-05-08T12:56:48Z
<p>I have 2 classes with a LINQ association between them i.e.:</p>
<pre><code>Table1: Table2:
ID ID
Name Description
ForiegnID
</code></pre>
<p>The association here is between <strong>Table1.ID -> Table2.ForiegnID</strong></p>
<p>I need to be able to change the value of Table2.ForiegnID, however I can't and think it is because of the association (as when I remove it, it works).</p>
<p>Therefore, does anyone know how I can change the value of the associated field Table2.ForiegnID?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1661547/how-do-you-set-permissions-on-a-schema-that-has-objects-accessing-other-schemas/1661678#1661678Comment by HAdes on How do you set permissions on a schema that has objects accessing other schemas?HAdes2009-11-02T16:41:21Z2009-11-02T16:41:21ZYeah I was trying to keep the question simple and to the point, but you're right I am confused!! Even though i'm using db roles, I still can't understand why I have to then give the db role access to the other schemas, cos this gives them access to everything and then I may aswell just have given them access directly to that other schema. Man I'm screwed.http://stackoverflow.com/questions/1661547/how-do-you-set-permissions-on-a-schema-that-has-objects-accessing-other-schemas/1662166#1662166Comment by HAdes on How do you set permissions on a schema that has objects accessing other schemas?HAdes2009-11-02T16:12:51Z2009-11-02T16:12:51ZGood point regarding my developer ignorance. Just so happens I have access to all schemas so lucky me. So I guess you're basically saying either to give them object by object access to the 'other' schema, or complete access via the db role. I just can't understnad why access isn't implicitly resolved within the object, considering I've given them access to that object.http://stackoverflow.com/questions/1661547/how-do-you-set-permissions-on-a-schema-that-has-objects-accessing-other-schemas/1661678#1661678Comment by HAdes on How do you set permissions on a schema that has objects accessing other schemas?HAdes2009-11-02T15:47:11Z2009-11-02T15:47:11ZYes this is what I have done now, however it is still bypassing the schema permissions. i.e. I now have a user in a db role that now accesses 3 schemas, just because of this scenario. This sounds dangerous to me, because now either they have access to everything in the other schemas or I need to manually set object by object permissions on the 'other' schema. What i really want is, if I give user A access to an Object B, that should be it, regardless of what Object B does (i.e. inserts to another schemas object). http://stackoverflow.com/questions/1661547/how-do-you-set-permissions-on-a-schema-that-has-objects-accessing-other-schemas/1661678#1661678Comment by HAdes on How do you set permissions on a schema that has objects accessing other schemas?HAdes2009-11-02T15:23:25Z2009-11-02T15:23:25ZThanks for the reply, however this is basically bypassing the schema permissioning, but a long winded way of doing it. Plus rather than creating sps as wrappers for views, I could instead give the user direct access to the view in the 'other' schema. All of this though, is still bypassing the use of schemas, which is what I don't want to do. Maybe the answer is that "YOU SHOULDN'T BE ACCESSING ONE SCHEMA FROM ANOTHER", but I'm not sure this is correct.http://stackoverflow.com/questions/1661547/how-do-you-set-permissions-on-a-schema-that-has-objects-accessing-other-schemasComment by HAdes on How do you set permissions on a schema that has objects accessing other schemas?HAdes2009-11-02T14:36:10Z2009-11-02T14:36:10ZI created the user in via management studio, i.e. not via a script does it matter?http://stackoverflow.com/questions/1578428/in-linqtosql-is-it-possible-to-have-a-custom-insert-method-that-auto-syncs-the-p/1580982#1580982Comment by HAdes on In LinqToSql, is it possible to have a custom Insert method that Auto-Syncs the primary key?HAdes2009-10-19T08:05:30Z2009-10-19T08:05:30ZThat's what i already have (pretty much), although when I assign a value to the entity.Id property, for example, it causes a change notification as it thinks the ID is now modified (just so happens to be from zero/null to my new value)http://stackoverflow.com/questions/1472557/in-linqtosql-how-do-you-enable-change-tracking-on-an-entitys-custom-property/1472738#1472738Comment by HAdes on In LinqToSql how do you enable change tracking on an entity's custom property?HAdes2009-09-24T17:50:18Z2009-09-24T17:50:18Zyes that's effectively what i have already, but the property MyEntity in my first entity doesn't seem to be tracking changes to any of it's fields.http://stackoverflow.com/questions/1472557/in-linqtosql-how-do-you-enable-change-tracking-on-an-entitys-custom-property/1472738#1472738Comment by HAdes on In LinqToSql how do you enable change tracking on an entity's custom property?HAdes2009-09-24T17:05:02Z2009-09-24T17:05:02ZThat would probably work, however the property i've added is of a custom type i.e. MyEntity not string or inthttp://stackoverflow.com/questions/1431723/how-do-you-validate-a-clr-property-after-it-has-been-updated-instead-of-before-wh/1446261#1446261Comment by HAdes on How do you validate a clr property after it has been updated instead of before when implementing IDataErrorInfo?HAdes2009-09-21T17:56:29Z2009-09-21T17:56:29ZGood idea, but I'm using LinqToSql as the Model and by default the Property changed notification is after the value is set.http://stackoverflow.com/questions/400135/c-listt-or-ilistt/400458#400458Comment by HAdes on C# - List<T> or IList<T>HAdes2009-09-11T10:26:12Z2009-09-11T10:26:12ZRegarding your last statement about using IEnumerable instead of IList. This is not always recommended, take WPF for example which will just create a wrapper IList object so will have an impact of perf - <a href="http://msdn.microsoft.com/en-us/library/bb613546.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1388811/whats-the-point-in-setting-up-dependency-properties-when-propertychangedeventha/1390540#1390540Comment by HAdes on What's the point in setting up dependency properties, when PropertyChangedEventHandler does the job?HAdes2009-09-08T08:47:57Z2009-09-08T08:47:57Zok thanks, i'll have a play aroundhttp://stackoverflow.com/questions/1388811/whats-the-point-in-setting-up-dependency-properties-when-propertychangedeventha/1390540#1390540Comment by HAdes on What's the point in setting up dependency properties, when PropertyChangedEventHandler does the job?HAdes2009-09-08T08:32:10Z2009-09-08T08:32:10ZI think I get it now. So are they only used in custom user controls or can they be used anywhere else? thankshttp://stackoverflow.com/questions/1230055/in-wpf-how-do-you-access-an-object-defined-in-window-xaml-from-a-nested-user-cont/1230091#1230091Comment by HAdes on In WPF how do you access an object defined in Window.xaml from a nested user control ?HAdes2009-08-21T16:42:36Z2009-08-21T16:42:36ZGreat this works well, however is it the only way? It seems a bit of a hack as what if I want to find an element that is a parent of an element of the same type. i.e.
<DockPanel x:Name="TheOneIWant">
<DockPanel>http://stackoverflow.com/questions/1254455/in-a-wpf-tabcontrol-how-can-i-dynamically-select-a-tab-page-from-an-objects-type/1311112#1311112Comment by HAdes on In a WPF tabControl how can I dynamically select a tab page from an object's type?HAdes2009-08-21T16:38:19Z2009-08-21T16:38:19ZYou need to post a question rather than an answer to another question. Plus you might want to reword it so others can get a better understanding of your issue.http://stackoverflow.com/questions/1301165/should-i-design-a-table-with-a-primary-key-of-varchar-or-int/1302613#1302613Comment by HAdes on Should I design a table with a primary key of varchar or int?HAdes2009-08-21T08:28:29Z2009-08-21T08:28:29ZThe performance hit on the joining approach sounds extremely minimal and I'd imagine you wouldn't notice any impact unless your tables were absolutely massive, right? If this is the case, then surely good design with int ID's is better no?