Questions tagged as 'c#'

2
answers

Software Release by Customers

The system I develop has several customers who use it. But I have a problem which is this: if I release a new version of the system, I upload it to ftp , all clients that use it have access to this new version and the system is updated. I do...
asked by 16.07.2015 / 23:05
1
answer

File Comparison

I need to compare different directory files and show the differences. But I do not want to list the name of the files, I just want you to do a comparison of the directories and show the differences of the files. These files would be .cs ....
asked by 21.01.2016 / 12:07
1
answer

Automate DDD

Is there a faster way to create a structure in asp.net mvc using DDD (plugin or framework)? For example, whenever you create a new entity, you must create many files in several projects and still configure the automapper and ninject. Is there...
asked by 19.01.2016 / 18:44
1
answer

Creating an Event in a WebService

I have a Webservice that has a method that writes a new inbound record and updates the list that contains those entries. Now I need the client to sign a Webservice event so that whenever a new record is added the event is triggered on the client...
asked by 01.02.2016 / 19:22
1
answer

Abstract class and properties in C #? [closed]

Hello, everyone! Next, I created an abstract class called Tables, where basic system table classes inherit from this abstract class. Like Neighborhood, City, States, category, etc ... The abstract class code looks like this: public abstract...
asked by 04.02.2016 / 23:44
1
answer

Send only list object that has changed to the controller

I have a view that lists all my clients . Each client has 3 checkbox where the user selects the same, and sends to controller - through the button (submit) - the data to change. The method is working perfectly. However, whe...
asked by 22.07.2015 / 16:52
1
answer

Thread Safe and your connection to Collections

What is thread safe, and what is your connection to data collections?     
asked by 05.06.2014 / 22:36
1
answer

How to smooth the transition between pages on windows phone?

How do I improve the page from page transition in Windows Phone? Because whenever you change pages, it changes as if it were "out of the blue", it does not appear smooth, like a normal transition. Have specific effects for this? Is some...
asked by 30.04.2014 / 22:07
1
answer

How to do "OR" between SubQuerys using LINQ C #

I would like to implement with LINQ C # (Using NHibernate as the following query : < return (from t1 in Session.Query<Tabela1>() join t2 in Session.Query<Tabela2>() on t1 equals t2.T1 where (from t...
asked by 12.05.2014 / 15:04
1
answer

How to make a ViewBag.list receive a type ListKeyValuePairstring, string?

How do I pass a list ( List<KeyValuePair<string, string>> ) to view by ViewBag ? My code: string grupo = "ConfigsPortalWebTextos"; List<KeyValuePair<string, string>> lista = new List<KeyValuePair<...
asked by 14.05.2014 / 16:33