Comment by mykhailovskyi on How to add field not mapped to table in Linq to Sql
@TheUknown, I can create and I did it in the same namespace in partial class, so I just extended auto generated class. But properties without Column attribute are not mapped and always contain default...
View ArticleComment by mykhailovskyi on Visual Studio 2015 Update 3 Offline Installer (ISO)
beta domain is no longer available. You can download installer (offline as well) by the next link: visualstudio.com/downloads/download-visual-studio-vs
View ArticleComment by mykhailovskyi on Applying border to a checkbox in Chrome
The best solution I found. Thanks.
View ArticleComment by mykhailovskyi on ASP.NET MVC Identity:how do I Extend...
Have you found any solution how to do that?
View ArticleComment by mykhailovskyi on Best practice to implement a sort property
Sorry, accidentally put same property name. Just updated.
View ArticleComment by mykhailovskyi on Mysql is not appearing in "Choose Data Source"...
You saved my day. I got a headache trying to generate contect for MySQL database. Thanks. P.S. What is important to follow step by step. Also it's needed to add references directly from the installed...
View ArticleComment by mykhailovskyi on Nice & universal way to convert List of items to...
In order to avoid duplicates you would need only first level nodes: categories.Where(n => n.ParentId == 0)
View ArticleComment by mykhailovskyi on ReactJS: Render dynamic Component and pass props
@MattWay, please have a look at the updated question.
View ArticleComment by mykhailovskyi on ReactJS: Render dynamic Component and pass props
thank you for your answer. Can you also clarify one thing here? The generic type is never known and I would need to define the type of public static defaultProps: IDataGridCellProps<T> . How to...
View ArticleComment by mykhailovskyi on EF Cannot insert explicit value for identity...
thanks for quick answer. That's partially true what you said. But I changed on EDMX diagram behavior for Id column.
View ArticleAnswer by mykhailovskyi for How to create HTML valid table with form inside rows
I think I have understood what do you need. You can make one simple table and into each row put only one td which keep form. Something like this: <table> @{ foreach (var item in...
View ArticleAnswer by mykhailovskyi for Html.ActionLink onclick JavaScript function is...
You add onclick handler in wrong place. You must put it in Html Attributes block instead Route values. Try it: <p>@Html.ActionLink("Call number", "Call", new { id = Model.Id, number =...
View ArticleAnswer by mykhailovskyi for ASP.NET MVC Checboxes disabling/enabling textboxes
You may set counter and create unique class or some attribute for each block. For example: <table id="myTable"> @{ int c = 0; for(int i = 0; i < Model.Count; i++) { c++; <tr...
View ArticleAnswer by mykhailovskyi for Replacing text inside span through CSS or JS
You can do it using jQuery: $(function(){ $('span.pluginButtonLabel').text('my text'); // end put here same for each span you need }) here is a demo. Same functionality using plain JavaScript:...
View ArticleAnswer by mykhailovskyi for How to identify whether List is a list of Ts that...
If I understood you correctly you have to do something like this: Type paramType = typeof(T); if(paramType is IMedia) { /*do smt*/ }
View ArticleAnswer by mykhailovskyi for How to add condition to output in MVC?
@(string.Format("{0}", Model.Toxin[i].intake_link[0].Length > 30 ?Model.Toxin[i].intake_link[0].Substring(0, 30) : Model.Toxin[i].intake_link[0]) But I suggest you write some string extension and...
View ArticleUnable to update cookies in asp.net mvc
I can write and read cookies but I can't change value for existing cookie it always has first set value. I found few ways how it can be implemented but no one works. Here is my code: private void...
View ArticleConvert array of bytes into GUID while filling DataTable
I try to retreive data from Oracle db like: DataSet ds = new DataSet(); using (var cmd = DBOracle.GetCommand()) { cmd.CommandText = sqlCommand; OracleDataAdapter adapter = new OracleDataAdapter(cmd);...
View ArticleUpdate only certain columns in DB using Entity Framework
I have an entity that I know already exists in the database but which is not currently being tracked by the context. I force the context to track the entity using the Attach method on DbSet. Then set...
View ArticleGeneric predicate to implement searching by any string property
Is there possibility to apply searching by any string property of entity? I need to build predicate to use it in LINQ query to database. var stringPropertyNames = typeof(T) .GetProperties() .Where(pi...
View ArticleAnswer by mykhailovskyi for SelectNodes with XPath ignoring cases in node names
We may convert xml and our variables to lower case. string value = "aBc"; XmlNode xmlnode = xmldoc.SelectSingleNode(string.Format("/some/path/add[translate(@key, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',...
View ArticleOutOfMemoryException when send large file
In my asp.net project some files are located in the one of folders of the web site. Direct links are provided for users to download that. It works fine until size of file not big (few Mb) but...
View Articleasp.net route does not work
I have a next route: routes.MapRoute( "CatalogFilter", "{url}Catalog.aspx/{fltr}", new { controller = "Catalog", action = "Index", page = 1 } ); So link does not match that route:...
View ArticleAppend bunch of items into collection stored in Memcached
It's possible to store a list of items in Memcached but in my case I need to have an ability to append data to the existing collection that is already stored in Memcached. Since collection is too...
View ArticleEF Cannot insert explicit value for identity column in table 'X' when...
I have to migrate data from one database to another. Keys should be preserved. I'm using EF with an auto-generated .dbmx file. I've read many answers to similar problem and follow those suggestions: I...
View ArticleComment by mykhailovskyi on how to append a partial view to html table
could you do console.log and show what does model look like.
View Articlereact/jsx-no-bind warning even arrow function as const is passed
After starting new project with the latest stable React version (17.0.1) I noticed that in the strict mode I'm getting react/jsx-no-bind warn w\o using inline arrow function://...const cancelDeletion =...
View ArticleSorting by non-displayed column in pivot mode
I use ag-grid version 26.0.0 and I want to sort grid programatically in pivot mode by a column that is not displayed.gridApi.setSortModel is deprecated and anyway not working for me.While debugging how...
View Article