User Andrei Rinea - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:14:59Z http://stackoverflow.com/feeds/user/1796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1866671/ms-access-read-form-control-value-in-a-modules-function 0 MS Access : Read form control value in a module's function Andrei Rinea 2009-12-08T12:33:02Z 2009-12-08T12:40:26Z <p>I have an Access database with a form in which a user clicks a button which in turn runs a macro which also runs a function in a module. Yes, convoluted and no, I am not allowed to change much since it's the customer's application.</p> <p>What I need is to read some combo-boxes and a radio button from the form in the function that's in the module and is called by the macro at the button's push. How can I do this?</p> http://stackoverflow.com/questions/1687474/how-can-i-convince-visual-studio-to-not-omit-access-modifiers-when-generating-cod 1 How can I convince Visual Studio to not omit access modifiers when generating code? Andrei Rinea 2009-11-06T13:02:57Z 2009-12-03T15:28:46Z <p>Very often when Visual Studio generates code (for example generating an event handler stub) it omits access modifiers for members. I would like it to stop doing this. Is there a setting for this?</p> http://stackoverflow.com/questions/1839266/type-safe-alternative-to-httpcontext-items 0 Type-safe alternative to HttpContext.Items Andrei Rinea 2009-12-03T11:10:07Z 2009-12-03T11:12:29Z <p>I am implementing an HTTP Module in ASP.NET to identify geographical information based on the request's IP (a GeoIP module) and I will need to place things somewhere so the handler or later modules can inspect.</p> <p>Except HttpContext.Items (which is not type-safe) is there some other decent alternative?</p> http://stackoverflow.com/questions/1347661/custom-authorization-in-ado-net-data-services 1 Custom authorization in ADO.NET Data Services Andrei Rinea 2009-08-28T15:15:54Z 2009-11-21T15:25:18Z <p>I have an ADO.NET Data Service that exposes an Entity Framework data model (.edmx).</p> <p>I need to allow / reject reads/writes to certain entities for certain users. I use Windows Authentication. All I could find is overriding the OnStartProcessingRequest :</p> <pre><code>protected override void OnStartProcessingRequest(ProcessRequestArgs args) { base.OnStartProcessingRequest(args); bool isBatch = args.IsBatchOperation; System.Uri requestUri = args.RequestUri; // parse uri and determine the entity and the operation // (i.e.: select/update/delete/insert) will be determined by the HTTP verb } </code></pre> <p>However I think this sucks and I am hoping for a better solution... Any ideas? :(</p> http://stackoverflow.com/questions/1286864/silverlight-wcf-proxy-async-only 2 Silverlight WCF Proxy async only? Andrei Rinea 2009-08-17T08:53:43Z 2009-11-01T18:30:03Z <p>Why do the Silerlight-generated WCF proxy class(es) offer only async calls?</p> <p>There are cases where I don't really need the async pattern (for example in a BackgroundWorker)</p> <p>EDIT : Sometimes I need to process the results of two WCF calls. It would have been much simpler if I could have waited (the business of the app allows that) for both calls to end and then process.. but noooo.... async! :P</p> http://stackoverflow.com/questions/387895/ado-net-dataservice-passing-parameter-to-webinvoke-method/1571728#1571728 0 Answer by Andrei Rinea for ADO.NET DataService: Passing parameter to [WebInvoke] Method Andrei Rinea 2009-10-15T11:17:33Z 2009-10-15T11:17:33Z <p>To complete a little <a href="http://stackoverflow.com/questions/387895/ado-net-dataservice-passing-parameter-to-webinvoke-method/844890#844890">antscode response</a> not only you must pay close attention about surrounding the parameter values with quotes ...</p> <p><strong>BUT!</strong> You must also prefix Guid values with "guid". Like so :</p> <pre><code>var y = ctx.Execute&lt;bool&gt;(new Uri("ReportExists?id=guid'" + Guid.NewGuid() + "'", UriKind.Relative)); </code></pre> http://stackoverflow.com/questions/1560107/certification-for-asp-net-mvc/1562932#1562932 1 Answer by Andrei Rinea for Certification for Asp.net MVC Andrei Rinea 2009-10-13T21:15:17Z 2009-10-13T21:15:17Z <p>I am sure that once ASP.NET 4.0 goes public and <strong>it will include ASP.NET MVC 2.0 final</strong> there will appear certifications that will, at least include ASP.NET MVC. However the time frame will not be short as I think..</p> http://stackoverflow.com/questions/1562683/testing-asp-net-mvc-view-model/1562925#1562925 1 Answer by Andrei Rinea for Testing ASP.NET MVC View Model Andrei Rinea 2009-10-13T21:13:51Z 2009-10-13T21:13:51Z <p>No it doesn't test (only?) the framework. It tests that executing the action results in a ViewModel consisting of a not-null, collection of the same count as the one supplied in the mock.</p> <p>You could simplify the last condition into </p> <pre><code>Assert.IsTrue(viewModel.Count() == posts.Count); </code></pre> <p>or even</p> <pre><code>Assert.IsTrue(viewModel.Count() == 2); </code></pre> <p>I mean it's a unit test, it's normal to have some hardcoded values in there.</p> http://stackoverflow.com/questions/82022/are-net-languages-really-making-any-kind-of-dent-in-consumer-desktop-application/1559508#1559508 0 Answer by Andrei Rinea for Are .NET languages really making any kind of dent in consumer desktop applications? Andrei Rinea 2009-10-13T10:55:32Z 2009-10-13T10:55:32Z <p>Microsoft InfoPath - part of Microsoft Office is also written in .NET</p> http://stackoverflow.com/questions/351644/synchronous-ado-net-dataservices-calls-in-silverlight/1536395#1536395 1 Answer by Andrei Rinea for Synchronous ADO.NET dataservices calls in Silverlight Andrei Rinea 2009-10-08T08:23:28Z 2009-10-08T08:23:28Z <p>I have managed to defeat ( :P ) the async monster in silverlight like so:</p> <pre><code>var ctx = new ModelEntities(new Uri("http://localhost:2115/Data.svc")); ManualResetEvent m1 = new ManualResetEvent(false); ManualResetEvent m2 = new ManualResetEvent(false); var q1 = (DataServiceQuery&lt;Department&gt;)(from e in ctx.Department select e); var q2 = (DataServiceQuery&lt;Person&gt;)(from e in ctx.Person select e); Department[] r1 = null; Person[] r2 = null; q1.BeginExecute(r =&gt; { try { r1 = q1.EndExecute(r).ToArray(); } finally { m1.Set(); } }, null); q2.BeginExecute(r =&gt; { try { r2 = q2.EndExecute(r).ToArray(); } finally { m2.Set(); } }, null); ThreadPool.QueueUserWorkItem((o) =&gt; { WaitHandle.WaitAll(new WaitHandle[] { m1, m2 }); // do your thing.. }); </code></pre> <p>The basic ideea is to spawn a waiter thread (the last block) which would have references to the wait objects. DON'T put your WaitAll call in the caller method / thread because this will result in a deadlock as others mentioned earlier on this site or other sites.</p> <p>The deadlock occurs because the threads are not starting until the method ends and the method does not end because the WaitAll call waits for the child threads to end.</p> <p>Not in my case above however because the WaitAll is on ANOTHER thread.</p> <p>PS : Instead of the // do your thing line place code that uses the r1 and r2 captured references which will hold the data or null if that result failed.</p> http://stackoverflow.com/questions/1366418/expand-whole-treeview-in-silverlight 1 Expand whole TreeView in Silverlight Andrei Rinea 2009-09-02T08:19:34Z 2009-10-08T05:58:27Z <p>How can I expand the whole TreeView in Silverlight?</p> <p>EDIT: Here is the XAML : </p> <pre><code>&lt;controls:TreeView x:Name="tv"&gt; &lt;controls:TreeView.ItemTemplate&gt; &lt;common:HierarchicalDataTemplate ItemsSource="{Binding Children}"&gt; &lt;CheckBox IsChecked="{Binding Visible, Mode=TwoWay}" Content="{Binding Name}"/&gt; &lt;/common:HierarchicalDataTemplate&gt; &lt;/controls:TreeView.ItemTemplate&gt; &lt;/controls:TreeView&gt; </code></pre> <p>Perhaps using the ItemTemplate makes the ItemContainerGenerator.ContainerFromIndex return null on any index?</p> http://stackoverflow.com/questions/229627/entity-classes-decoupled-from-linq-to-sql-provider-for-implementing-the-repositor 7 Entity classes decoupled from LINQ to SQL provider for implementing the Repository pattern. How? Andrei Rinea 2008-10-23T13:04:51Z 2009-10-04T02:21:09Z <p>I have looked over the Repository pattern and I recognized some ideas that I was using in the past which made me feel well.</p> <p>However now I would like to write an application that would use this pattern <strong>BUT I WOULD LIKE TO HAVE THE ENTITY CLASSES DECOUPLED</strong> from the repository provider.</p> <p>I would create several assemblies :</p> <ol> <li>an "Interfaces" assembly which would host common interfaces including the IRepository interface</li> <li>an "Entities" assembly which would host the entity classes such as Product, User, Order and so on. This assembly would be referenced by the "Interfaces" assembly since some methods would return such types or arrays of them. Also it would be referenced by the main application assembly (such as the Web Application)</li> <li>one or more Repository provider assembly/assemblies. Each would include (at least) a class that implements the IRepository interface and it would work with a certain Data Store. Data stores could include an SQL Server, an Oracle server, MySQL, XML files, Web / WCF services and so on.</li> </ol> <p>Studying LINQ to SQL which looks very productive in terms of time taken to implement all seems well until I discover the deep dependency between the generated classes and the CustomDataContext class.</p> <p>How can I use LINQ to SQL in such a scenario?</p> http://stackoverflow.com/questions/617170/query-duration-estimation-in-sql-server 1 Query duration estimation in SQL Server Andrei Rinea 2009-03-05T23:31:46Z 2009-09-27T07:28:05Z <p>I've seen in Oracle 10g a feature that estimates the remaining time for a long running query and I was wondering if this is possible too in SQL Server (at least in 2008?)?</p> <p>Suppose I have a very large table with tens of millions of rows (well indexed etc. etc.) and I need to search for some particular rows. I know it will take a lot of time and I'm cool with that but I would like to present the user with some kind of a progress bar.</p> <p>How can I show progress?</p> http://stackoverflow.com/questions/1476313/silverlight-tcp-tunneling-bridging 0 silverlight tcp tunneling / bridging Andrei Rinea 2009-09-25T09:20:28Z 2009-09-25T12:17:30Z <p>I have an application that I develop in Silverlight and it must connect to another legacy app that I cannot control which demands TCP connection on the 3005 port.</p> <p>I can't modify the legacy app to bring the port in the silverlight accepted range (4502 - 453x).</p> <p>Is there a bridging app / another solution that would listen on a configurable port (say 4502) and forward everything to another port (say 3005) ? And vice-versa.. receive from that socket and push it back to "me"?</p> <p>What options do I have?</p> http://stackoverflow.com/questions/1459288/explicit-or-implicit-execution-control-statement-use 0 Explicit or implicit execution control statement use Andrei Rinea 2009-09-22T10:30:48Z 2009-09-22T12:48:20Z <p>I sometimes use</p> <pre><code>if (this._currentToolForeColor.HasValue) return this._currentToolForeColor.Value; else throw new InvalidOperationException(); </code></pre> <p>other times I use</p> <pre><code>if (this._currentToolForeColor.HasValue) return this._currentToolForeColor.Value; throw new InvalidOperationException(); </code></pre> <p>The two are equivalent, I know, but I am not sure which is the best and why.</p> <p>This goes even further as you can use other execution-control statements such as brake or continue :</p> <pre><code>while(something) { if(condition) { DoThis(); continue; } else break; } </code></pre> <p>versus </p> <pre><code>while(something) { if(condition) { DoThis(); continue; } break; } </code></pre> <p>EDIT 1 : Yes the loop example(s) suck because they are synthetic (i.e.: made up for this question) unlike the first which is practical.</p> http://stackoverflow.com/questions/1443531/is-socket-sendasync-thread-safe-effectively 2 Is Socket.SendAsync thread safe effectively? Andrei Rinea 2009-09-18T09:45:11Z 2009-09-18T10:06:03Z <p>I was fiddling with Silverlight's TCP communication and I was forced to use the System.Net.Sockets.Socket class which, on the Silverlight runtime has only asynchronous methods.</p> <p>I was wondering what happens if two threads call SendAsync on a Socket instance in a very short time one from the other?</p> <p>My single worry is to not have intermixed bytes going through the TCP channel.</p> <p>Being an asynchronous method <strong>I suppose</strong> the message gets placed in a queue from which a single thread dequeues so no such things will happen (intermixing content of the message on the wire). </p> <p>But I am not sure and the MSDN does not state anything in the method's description. Is anyone <strong>sure</strong> of this?</p> <p>EDIT1 : No, locking on an object before calling SendAsync such as :</p> <pre><code>lock(this._syncObj) { this._socket.SendAsync(arguments); } </code></pre> <p>will not help since this serializes the requests to send data not the data actually sent.</p> http://stackoverflow.com/questions/1411027/bogus-invalidoperationexception-in-a-dataservicerequestexception 0 Bogus InvalidOperationException (in a DataServiceRequestException) Andrei Rinea 2009-09-11T13:58:13Z 2009-09-11T14:06:34Z <p>I am having a hard time with ADO.NET Data Services (formerly code-named Astoria) as it gives me a bogus exception when I try to insert a new entity from the silverlight client and trying in a clean project (the same code) doesn't.</p> <p>In both cases, however, data is correctly inserted into the database. Using Fiddler (an HTTP debugger I could see that there is no problem in the HTTP communication as I will show later in this question.</p> <p>The code : </p> <pre><code>var ctx = new MyProject123Entities(new Uri("http://andreiri/MyProject.Data/Data.svc")); var i = new Zone() { Data = DateTime.Now, IdElement = 1 }; ctx.AddToZone(i); i.StareZone = new StareZone() { IdStareZone = 1 }; ctx.AttachTo("StareZone", i.StareZone); ctx.SetLink(i, "StareZone", i.StareZone); i.TipZone = new TipZone() { IdTipZone = 1 }; ctx.AttachTo("TipZone", i.TipZone); ctx.SetLink(i, "TipZone", i.TipZone); i.User = new User() { IdUser = 2 }; ctx.AttachTo("User", i.User); ctx.SetLink(i, "User", i.User); ctx.BeginSaveChanges(r =] ctx.EndSaveChanges(r), null); </code></pre> <p>when run the last line (ctx.EndSaveChanges(r)) will throw the following exception :</p> <pre><code>System.Data.Services.Client.DataServiceRequestException was unhandled by user code Message="An error occurred while processing this request." StackTrace: at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.HandleBatchResponse() at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.EndRequest() at System.Data.Services.Client.DataServiceContext.EndSaveChanges(IAsyncResult asyncResult) at MyProject.MainPage.[]c__DisplayClassd6.[]c__DisplayClassd8.[dashboard_PostZoneCurent]b__d5(IAsyncResult r) at System.Data.Services.Client.BaseAsyncResult.HandleCompleted() at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.HandleCompleted(PerRequest pereq) at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.AsyncEndRead(IAsyncResult asyncResult) at System.IO.Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.AsyncEndGetResponse(IAsyncResult asyncResult) InnerException: System.InvalidOperationException Message="The context is already tracking a different entity with the same resource Uri." StackTrace: at System.Data.Services.Client.DataServiceContext.AttachTo(Uri identity, Uri editLink, String etag, Object entity, Boolean fail) at System.Data.Services.Client.MaterializeAtom.MoveNext() at System.Data.Services.Client.DataServiceContext.HandleResponsePost(ResourceBox entry, MaterializeAtom materializer, Uri editLink, String etag) at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.[HandleBatchResponse]d__1d.MoveNext() InnerException: </code></pre> <p>(there is no further information regarding the exception although the ADo.NET Data Service is configured to return detailed informations)</p> <p>However the row is inserted correctly and completely in the database. Using fiddler I can see that the request :</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" standalone="yes"?&gt; &lt;entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom"&gt; &lt;category scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" term="MyProject123Model.Zone" /&gt; &lt;title /&gt; &lt;updated&gt;2009-09-11T13:36:46.917157Z&lt;/updated&gt; &lt;author&gt; &lt;name /&gt; &lt;/author&gt; &lt;id /&gt; &lt;link href="http://andreiri/MyProject.Data/Data.svc/StareZone(1)" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/StareZone" type="application/atom+xml;type=entry" /&gt; &lt;link href="http://andreiri/MyProject.Data/Data.svc/TipZone(4)" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/TipZone" type="application/atom+xml;type=entry" /&gt; &lt;link href="http://andreiri/MyProject.Data/Data.svc/User(4)" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/User" type="application/atom+xml;type=entry" /&gt; &lt;content type="application/xml"&gt; &lt;m:properties&gt; &lt;d:Data m:type="Edm.DateTime"&gt;2009-09-11T16:36:40.588951+03:00&lt;/d:Data&gt; &lt;d:Detalii&gt;aslkdfjasldkfj&lt;/d:Detalii&gt; &lt;d:IdElement m:type="Edm.Int32"&gt;1&lt;/d:IdElement&gt; &lt;d:IdZone m:type="Edm.Int32"&gt;0&lt;/d:IdZone&gt; &lt;d:X_Post m:type="Edm.Decimal"&gt;587647.4705&lt;/d:X_Post&gt; &lt;d:X_Repost m:type="Edm.Decimal" m:null="true" /&gt; &lt;d:Y_Post m:type="Edm.Decimal"&gt;325783.077599999&lt;/d:Y_Post&gt; &lt;d:Y_Repost m:type="Edm.Decimal" m:null="true" /&gt; &lt;/m:properties&gt; &lt;/content&gt; &lt;/entry&gt; </code></pre> <p>is well accepted and a successful response is returned :</p> <pre><code>HTTP/1.1 201 Created Date: Fri, 11 Sep 2009 13:36:47 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 DataServiceVersion: 1.0; Location: http://andreiri/MyProject.Data/Data.svc/Zone(75) Cache-Control: no-cache Content-Type: application/atom+xml;charset=utf-8 Content-Length: 2213 &lt;?xml version="1.0" encoding="utf-8" standalone="yes"?&gt; &lt;entry xml:base="http://andreiri/MyProject.Data/Data.svc/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom"&gt; &lt;id&gt;http://andreiri/MyProject.Data/Data.svc/Zone(75)&lt;/id&gt; &lt;title type="text"&gt;&lt;/title&gt; &lt;updated&gt;2009-09-11T13:36:47Z&lt;/updated&gt; &lt;author&gt; &lt;name /&gt; &lt;/author&gt; &lt;link rel="edit" title="Zone" href="Zone(75)" /&gt; &lt;link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CenterZone" type="application/atom+xml;type=feed" title="CenterZone" href="Zone(75)/CenterZone" /&gt; &lt;link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ZoneMobil" type="application/atom+xml;type=feed" title="ZoneMobil" href="Zone(75)/ZoneMobil" /&gt; &lt;link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/StareZone" type="application/atom+xml;type=entry" title="StareZone" href="Zone(75)/StareZone" /&gt; &lt;link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/TipZone" type="application/atom+xml;type=entry" title="TipZone" href="Zone(75)/TipZone" /&gt; &lt;link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/User" type="application/atom+xml;type=entry" title="User" href="Zone(75)/User" /&gt; &lt;category term="MyProject123Model.Zone" scheme="http://schemas.microsoft.com ado/2007/08/dataservices/scheme" /&gt; &lt;content type="application/xml"&gt; &lt;m:properties&gt; &lt;d:IdZone m:type="Edm.Int32"&gt;75&lt;/d:IdZone&gt; &lt;d:X_Post m:type="Edm.Decimal"&gt;587647.4705&lt;/d:X_Post&gt; &lt;d:Y_Post m:type="Edm.Decimal"&gt;325783.077599999&lt;/d:Y_Post&gt; &lt;d:X_Repost m:type="Edm.Decimal" m:null="true" /&gt; &lt;d:Y_Repost m:type="Edm.Decimal" m:null="true" /&gt; &lt;d:Data m:type="Edm.DateTime"&gt;2009-09-11T16:36:40.588951+03:00&lt;/d:Data&gt; &lt;d:Detalii&gt;aslkdfjasldkfj&lt;/d:Detalii&gt; &lt;d:IdElement m:type="Edm.Int32"&gt;1&lt;/d:IdElement&gt; &lt;/m:properties&gt; &lt;/content&gt; &lt;/entry&gt; </code></pre> <p>Why do I get an exception? And, using this in a clean project does not throw the exception..</p> http://stackoverflow.com/questions/1283955/determine-varchar-content-in-nvarchar-columns 0 Determine varchar content in nvarchar columns Andrei Rinea 2009-08-16T10:16:57Z 2009-09-09T04:45:25Z <p>I have a bunch of NVARCHAR columns which I suspect contain perfectly storable data in VARCHAR columns. However I can't just go and change the columns' type into VARCHAR and hope for the best, I need to do some sort of check.</p> <p>I want to do the conversion because the data is static (it won't change in the future) and the columns are indexed and would benefit from a smaller (varhcar) index compared to the actual (nvarchar) index.</p> <p>If I simply say</p> <pre><code>ALTER TABLE TableName ALTER COLUMN columnName VARCHAR(200) </code></pre> <p>then I won't get an error or a warning. Unicode data will be truncated/lost.</p> <p><strong>How do I check?</strong></p> http://stackoverflow.com/questions/1366313/possible-to-compile-asp-net-to-machine-code/1366324#1366324 1 Answer by Andrei Rinea for Possible to Compile ASP.NET to Machine Code? Andrei Rinea 2009-09-02T07:49:08Z 2009-09-02T07:49:08Z <p>In the end an ASP.NET Application (be it "ASP.NET Web Application" or "ASP.NET Web site") is compiled to IL and then when that piece of IL is used it is further compiled to machine code, transparently by the .NET Runtime (CLR).</p> <p>The performance benefits... are there :) It works faster than interpreted web sites and so on.</p> <p>If however you mean to compile its assemblies (DLLs) to native format so it can't be dissambled there are a couple of commercial tools available for both obfuscation and IL/native code replacement.</p> http://stackoverflow.com/questions/1361783/silverlight-checkbox-two-way-binding-not-working-as-expected 2 Silverlight checkbox two way binding not working as expected Andrei Rinea 2009-09-01T10:53:10Z 2009-09-01T11:07:38Z <p>I have simple issue setting a two-way databinding of a checkbox in Silverlight 3.0. It must be a no-brainer but probably I forgot my brain home today...</p> <p>I defined a Model class to represent my .. 'data'. I implemented the INotifyPropertyChanged interface to enable the UI to see when the data changes.</p> <pre><code>public class Model : INotifyPropertyChanged { private bool _value; public bool Value { get { return this._value; } set { if (this.PropertyChanged != null) this.PropertyChanged(this, new PropertyChangedEventArgs("Value")); this._value = value; } } public event PropertyChangedEventHandler PropertyChanged; } </code></pre> <p>Next I put a checkbox and a button on the .. 'form' :</p> <pre><code> &lt;StackPanel Orientation="Horizontal"&gt; &lt;CheckBox x:Name="check" IsChecked="{Binding Value, Mode=TwoWay}" Content="SomeLabel"/&gt; &lt;Button Click="Button_Click" Content="Test" /&gt; &lt;/StackPanel&gt; </code></pre> <p>Then I supplied the data in the constructor :</p> <pre><code> public MainPage() { InitializeComponent(); this.DataContext = new Model() { Value = true }; } </code></pre> <p>The issue is that you have to click twice on the checkbox for it to check/uncheck unless I de-implement the INotifyPropertyChanged. If de-implement it however, then the UI doesn't notice if I change the underlying data.</p> <p>If I remove the Mode=TwoWay bit from the IsChecked binding expression then also the UI won't notice the underlying data change even if the Model is implementing the interface.</p> <p>How can I do to :</p> <ol> <li>Have the checkbox bound to the data at startup</li> <li>Have the checkbox IsChecked change to modify the underlying data</li> <li>Have the checkbox detect the underlying data change and update itself?</li> </ol> http://stackoverflow.com/questions/1352461/is-there-a-good-way-to-store-enums-from-the-database/1352467#1352467 1 Answer by Andrei Rinea for Is there a good way to store enums from the database? Andrei Rinea 2009-08-29T21:47:44Z 2009-08-30T11:07:12Z <p>These can be loaded at application startup in the Application object. I suppose they won't change too often.</p> <p>Then used from there. For such 'catalogs' that rarely change (once per year or less) I often hardcode them into an enum type too.</p> <p>Edit :</p> <p>For enums such as PaymentStatus or such, which change rarely or never a c# enum mapped to the catalog having the same numeric values, as Randolpho said is ok. For others cache in the HttpRuntimeCache object ("Cache") and put either an absolute expiration either an SqlDependency</p> http://stackoverflow.com/questions/417898/why-do-i-need-stored-procedures-when-i-have-linq-to-sql/1341430#1341430 0 Answer by Andrei Rinea for Why do I need Stored Procedures when I have LINQ to SQL Andrei Rinea 2009-08-27T14:19:32Z 2009-08-27T14:19:32Z <p><strong>Reason : Large amounts of data to move from one table to another.</strong></p> <p>Let's say that once in a while you have to archive items from one table to another or do similar things. With LINQ that would mean to retrieve let's say one million rows from table A into the DBMS client and then insert them into table B.</p> <p><em>With a stored procedure things work nice, in sets.</em></p> http://stackoverflow.com/questions/1164571/select-single-value-with-ado-net-data-services-and-linq/1333977#1333977 0 Answer by Andrei Rinea for Select Single Value with ADO.Net Data Services and LINQ Andrei Rinea 2009-08-26T11:12:59Z 2009-08-26T11:12:59Z <p>You are not the first to get hit by the asynchronous nature of all silverlight outgoing requests.</p> <p>In the lambda expression </p> <pre><code>(pr) =&gt; returnedProd = qry.EndExecute(pr).First() </code></pre> <p>you capture the local variable returnedProd but usually the thread that will spin off AFTER BeginExecute has been called will be too late. It will probably executed after the execution goes out of scope of the current method and the variable will be lost.</p> <p>The solution is to use effectively the "returnedProd" to populate the UI or whatever you need to do <strong>IN</strong> the lambda expression. Something like :</p> <pre><code>(pr) =&gt; { returnedProd = qry.EndExecute(pr).First(); MessageBox.Show("Retrieved record" + returnedProd.Id); } </code></pre> <p>Otherwise useful answer for the community, I wish I had one a few weeks ago :(</p> http://stackoverflow.com/questions/124358/reuse-mvc-arhitecture-have-two-layers-of-ui-asp-net-mvc-and-net-winforms 6 Reuse MVC arhitecture; Have two layers of UI : ASP.NET MVC and .NET Winforms Andrei Rinea 2008-09-23T22:39:08Z 2009-08-24T18:52:23Z <p>Although my question might seem abstract I hope it's not. Suppose I develop an application, an ASP.NET MVC site and later I am tasked to build an Winforms client for this application how much and how can I reuse from the existing application?</p> <p>I defined the models, I defined controllers and views. They all work well.</p> <p>Now the boss comes asking for a Winforms client and I am hoping I can reuse the models and the controllers (provided I put them in different assemblies) and not reuse just the views (ASPX views).</p> <p>Can this be done? How?</p> http://stackoverflow.com/questions/836252/silverlight-async-calls-and-anonymous-methods/1298384#1298384 0 Answer by Andrei Rinea for Silverlight async calls and anonymous methods.... Andrei Rinea 2009-08-19T07:51:56Z 2009-08-19T07:51:56Z <p>The way I came to do it is like so :</p> <pre><code>var query = from t in GetFreshContext().Employee select t; var dsQuery = (DataServiceQuery&lt;Employee&gt;)query; dsQuery.BeginExecute(result =&gt; { ComboEmployees.ItemsSource = dsQuery.EndExecute(result).ToArray(); }, null); ComboEmployees.DisplayMemberPath = "FullName"; </code></pre> <p>I wrote a <a href="http://blog.andrei.rinea.ro/post/2009/08/19/Using-ADONET-Data-Servics-in-Silverlight-3-and-eager-loading-parent-entities.aspx" rel="nofollow">blog post regarding some other problems and this</a>.</p> http://stackoverflow.com/questions/1074540/how-to-catch-exception-of-mvc-view/1292191#1292191 0 Answer by Andrei Rinea for how to catch exception of MVC view? Andrei Rinea 2009-08-18T06:44:45Z 2009-08-18T06:44:45Z <p>Although I support David Liddle's answer ("This logic should be handled inside your Controller and not the View") I can also tell you that you should code defensively in general.</p> <p>For example instead of </p> <pre><code>try { Html.Encode(Model.MyID) } catch { Response.Redirect("~/Error/500"); } </code></pre> <p>you should </p> <pre><code>if (Model == null) { // ... } else { //..... } </code></pre> <p>(ofcourse, again, don't put view selection logic in a view)</p> http://stackoverflow.com/questions/759863/asp-net-mvc-users-do-you-miss-anything-from-webforms/1286586#1286586 0 Answer by Andrei Rinea for ASP.NET MVC users - do you miss anything from WebForms? Andrei Rinea 2009-08-17T07:31:34Z 2009-08-17T07:31:34Z <p>Well I do miss something :</p> <p>the ability to have a pageable grid in seconds. </p> <p>Although it wouldn't be very fair since I also had to create a class to feed to the ObjectDataSource to have an efficient pagination. And also the pagination would work only with the JavaScript on or I would have to write code to read the QueryString (for ex. &amp;pag=2 etc.) and so on.</p> <p>In fact... I guess there isn't much too miss.</p> http://stackoverflow.com/questions/1043129/do-you-check-httpverbs-in-your-unit-tests/1277042#1277042 0 Answer by Andrei Rinea for Do you check HttpVerbs in your unit tests? Andrei Rinea 2009-08-14T10:02:15Z 2009-08-14T10:02:15Z <p>I don't but that's only because it hasn't crossed my mind until you mentioned it. I will from now on.</p> http://stackoverflow.com/questions/1272811/deserialization-not-working-in-wcf 1 Deserialization not working in WCF Andrei Rinea 2009-08-13T15:43:26Z 2009-08-13T16:19:31Z <p>I have a simple class, let's say "Team" and I expose a WCF service (basicHttpBinding, hosted in IIS) with a GetTeams operation which returns an array of Team.</p> <p>The Team class looks like</p> <pre><code>[DataContract] public class Team { [DataMember] public int Id { get; set; } [DataMember] public Point Position { get; set; } [DataMember] public string Code { get; set; } [DataMember] public bool Available { get; set; } [DataMember] public string Extra { get; set; } [DataMember] public double X { get; set; } [DataMember] public double Y { get; set; } } </code></pre> <p>On the client (Silverlight 3.0 app) I get all the data but the Position property holds a default Point instance. The Point struct is <a href="http://msdn.microsoft.com/en-us/library/system.windows.point.aspx" rel="nofollow">System.Windows.Media.Point</a> which is serializable. I also added the X and Y properties to duplicate the Position data to see if it gets right on the other end of the wire.</p> <p>The XML intercepted (thanks, Firebug!) looks like so:</p> <pre><code>&lt;s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;s:Body&gt; &lt;GetTeamsResponse xmlns="http://tempuri.org/"&gt; &lt;GetTeamsResult xmlns:a="http://schemas.datacontract.org/2004/07/MyProject.Data" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"&gt; &lt;a:Team&gt; &lt;a:Code&gt;A23HJGF23&lt;/a:Code&gt; &lt;a:Available&gt;true&lt;/a:Available&gt; &lt;a:Extra i:nil="true"/&gt; &lt;a:Id&gt;1&lt;/a:Id&gt; &lt;a:Position xmlns:b="http://schemas.datacontract.org/2004/07/System.Windows"&gt; &lt;b:_x&gt;572194.59937858&lt;/b:_x&gt; &lt;b:_y&gt;322518.3889979&lt;/b:_y&gt; &lt;/a:Position&gt; &lt;a:X&gt;572194.59937858&lt;/a:X&gt; &lt;a:Y&gt;322518.3889979&lt;/a:Y&gt; &lt;/a:Team&gt; &lt;!-- other &lt;a:Team&gt; elements --&gt; &lt;/GetTeamsResult&gt; &lt;/GetTeamsResponse&gt; &lt;/s:Body&gt; &lt;/s:Envelope&gt; </code></pre> <p>Therefore it seems there is a deserialization issue. <strong>No exception is thrown!</strong></p> <p>Why?</p> http://stackoverflow.com/questions/1087279/how-does-the-asp-net-mvc-updatemodel-method-work/1272908#1272908 0 Answer by Andrei Rinea for How does the ASP.NET MVC UpdateModel() method work? Andrei Rinea 2009-08-13T16:00:18Z 2009-08-13T16:00:18Z <p>It does inspect all the HttpRequest inputs such as Form, QueryString, Cookies and Server variables. I think in this order.</p> http://stackoverflow.com/questions/280759/jquery-validate-how-to-add-a-rule-for-regular-expression-validation Comment by Andrei Rinea on JQuery validate: How to add a rule for regular expression validation? Andrei Rinea 2009-12-08T16:06:38Z 2009-12-08T16:06:38Z OMG it <b>DOESN'T</b> have regex validation?! http://stackoverflow.com/questions/1866671/ms-access-read-form-control-value-in-a-modules-function/1866682#1866682 Comment by Andrei Rinea on MS Access : Read form control value in a module's function Andrei Rinea 2009-12-08T12:40:45Z 2009-12-08T12:40:45Z Thanks! It worked :D http://stackoverflow.com/questions/43289/comparing-two-byte-arrays-in-net/1445405#1445405 Comment by Andrei Rinea on Comparing two byte arrays in .NET Andrei Rinea 2009-12-05T01:45:56Z 2009-12-05T01:45:56Z P/Invoke... booo... http://stackoverflow.com/questions/1687474/how-can-i-convince-visual-studio-to-not-omit-access-modifiers-when-generating-cod/1687506#1687506 Comment by Andrei Rinea on How can I convince Visual Studio to not omit access modifiers when generating code? Andrei Rinea 2009-11-06T13:26:11Z 2009-11-06T13:26:11Z I don't like quitting :( http://stackoverflow.com/questions/387895/ado-net-dataservice-passing-parameter-to-webinvoke-method/1571728#1571728 Comment by Andrei Rinea on ADO.NET DataService: Passing parameter to [WebInvoke] Method Andrei Rinea 2009-10-21T11:11:55Z 2009-10-21T11:11:55Z Yes, michaelf1977, that's true :( But having had problems with the GUID prefix I thought it was worth mentioning here. http://stackoverflow.com/questions/1173359/from-datatable-to-bindinglist/1173942#1173942 Comment by Andrei Rinea on From DataTable to BindingList Andrei Rinea 2009-10-17T11:39:38Z 2009-10-17T11:39:38Z that sucks man.. :( http://stackoverflow.com/questions/1532937/asp-net-c-put-round-sqldatasource-into-square-datatable-hole Comment by Andrei Rinea on ASP .NET C# - Put round SqlDataSource into square DataTable hole? Andrei Rinea 2009-10-13T21:16:11Z 2009-10-13T21:16:11Z Please post the Exception details (message and stacktrace especially) http://stackoverflow.com/questions/1562224/how-do-i-unit-test-a-function-that-inserts-a-record-into-a-ria-services-db Comment by Andrei Rinea on How do I Unit Test a function that inserts a record into a RIA Services DB? Andrei Rinea 2009-10-13T21:07:08Z 2009-10-13T21:07:08Z tough one...... :( http://stackoverflow.com/questions/82022/are-net-languages-really-making-any-kind-of-dent-in-consumer-desktop-application/180852#180852 Comment by Andrei Rinea on Are .NET languages really making any kind of dent in consumer desktop applications? Andrei Rinea 2009-10-13T20:08:05Z 2009-10-13T20:08:05Z Well if not entirely then how much? 50%? http://stackoverflow.com/questions/351644/synchronous-ado-net-dataservices-calls-in-silverlight Comment by Andrei Rinea on Synchronous ADO.NET dataservices calls in Silverlight Andrei Rinea 2009-10-08T08:28:46Z 2009-10-08T08:28:46Z Good question, a common problem in Silverlight http://stackoverflow.com/questions/1476313/silverlight-tcp-tunneling-bridging/1476361#1476361 Comment by Andrei Rinea on silverlight tcp tunneling / bridging Andrei Rinea 2009-09-26T07:22:45Z 2009-09-26T07:22:45Z thank you! http://stackoverflow.com/questions/1476313/silverlight-tcp-tunneling-bridging/1476351#1476351 Comment by Andrei Rinea on silverlight tcp tunneling / bridging Andrei Rinea 2009-09-26T07:22:09Z 2009-09-26T07:22:09Z I checked out the two port forwarding utilities you linked to but neither one has satisfied me so I wrote one myself and it works :D http://stackoverflow.com/questions/1476313/silverlight-tcp-tunneling-bridging/1476351#1476351 Comment by Andrei Rinea on silverlight tcp tunneling / bridging Andrei Rinea 2009-09-25T09:32:43Z 2009-09-25T09:32:43Z thanks, I will go search for this term also :) http://stackoverflow.com/questions/1347661/custom-authorization-in-ado-net-data-services/1460884#1460884 Comment by Andrei Rinea on Custom authorization in ADO.NET Data Services Andrei Rinea 2009-09-23T15:04:03Z 2009-09-23T15:04:03Z Great answer! +1 http://stackoverflow.com/questions/1459288/explicit-or-implicit-execution-control-statement-use/1459295#1459295 Comment by Andrei Rinea on Explicit or implicit execution control statement use Andrei Rinea 2009-09-22T13:17:29Z 2009-09-22T13:17:29Z true, I agree upon failing early but in this case this is the first check so I can't make it any earlier than this.