Jump to content

Girish Dubey

Members
  • Posts

    28
  • Joined

  • Last visited

About Girish Dubey

  • Birthday 12/04/1991

Contact Methods

  • Website URL
    http://www.hotzshop.com
  • Skype
    dubey.girish2

Profile Information

  • Location
    New Delhi

Recent Profile Visitors

31,414 profile views

Girish Dubey's Achievements

Newbie

Newbie (1/7)

1

Reputation

  1. How i can filter List the data with Dictionary condition using linq. class Person { public string name { get; set; } public string subject { get; set; } public string type { get; set; } public int age { get; set; } } class Test { public void FindData() { // Create dictionary and add five keys and values. var conditionDictionary = new Dictionary<string, string>(); conditionDictionary.Add("subject", "english"); conditionDictionary.Add("type", "teacher"); List<Person> persons = new List<Person>(); persons.Add(new Person { name = "Rajul", subject = "math", type = "teacher", age = 20 }); persons.Add(new Person { name = "Jhon", subject = "english", type = "teacher", age = 25 }); persons.Add(new Person { name = "Nitin", subject = "english", type = "student", age = 21 }); persons.Add(new Person { name = "Sumit", subject = "english", type = "teacher", age = 26 }); persons.Add(new Person { name = "Komal", subject = "science", type = "student", age = 29 }); List<Person> filteredpersons = Filter(persons, conditionDictionary); } public List<Person> Filter(List<Person> persons, Dictionary<string, string> conditionDictionary) { /*TODO: can you suggest how to filter list data using linq with Distionary*/ var list = (from person in persons from condition in conditionDictionary select person).ToList(); return list; } }
  2. 10:55:57 10:55:57 C:\Builds\workspace\ci-job_master>"AutomatedProcedures\tools\nant-0.92\bin\nant.exe" -buildfile:AutomatedProcedures\NantScript.xml -D:Innovator.License.Type=Unlimited -D:Innovator.Activation.Key=xxxxxxxxxxxxxxxxxxxx-D:Innovator.License.Key=3c1bdb569c74585xxxxxxxxxxxxxxxxxxxxxx -D:MSSQL.Innovator.Password=**** -D:MSSQL.Innovator.Regular.Password=**** -D:MSSQL.SA.Password=**** -D:MSSQL.Server=. -D:Path.To.CodeTree.Zip=F:\Project\CIPro\CodeTreeSP12.zip -D:Path.To.DB.Bak=F:\Project\CIPro\CoreAndSolutions110_SP12DB.bak -D:Branch.Name=master ContinuousIntegration 10:55:59 NAnt 0.92 (Build 0.92.4543.0; release; 09-06-2012)10:55:59 Copyright (C) 2001-2012 Gerry Shaw*10:55:59* http://nant.sourceforge.net10:55:59 10:56:01 Buildfile: file:///C:/Builds/workspace/ci-job_master/AutomatedProcedures/NantScript.xml10:56:01 Target framework: Microsoft .NET Framework 4.0*10:56:01* Target(s) specified: ContinuousIntegration 10:56:01 10:56:03 [mkdir] Creating directory 'C:\Builds\workspace\ci-job_master\AutomatedProceduresOutput\TemporaryFilesAndLogs'.10:56:03 [include] Including file C:\Builds\workspace\ci-job_master\AutomatedProcedures\Default.Settings.include.10:56:03 [include] Including file C:\Builds\workspace\ci-job_master\AutomatedProcedures\Includes\NodeJs.include.10:56:03 [include] Including file C:\Builds\workspace\ci-job_master\AutomatedProcedures\Includes\MSBuild.include.10:56:03 [include] Including file C:\Builds\workspace\ci-job_master\AutomatedProcedures\Includes\ValidateEncoding.include.10:56:03 [include] Including file C:\Builds\workspace\ci-job_master\AutomatedProcedures\Includes\EnvironmentDiagnostics.include.10:56:04 [echo] SQL Server authentication will be used to access .10:56:06 10:56:06 Environment.Diagnostics:10:56:06 10:56:07 [echo] Version of node.js is v10.15.0*10:56:07* [echo] Version of C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe is 14.0*10:56:07* [echo] Windows version: Microsoft Windows [Version 10.0.17134.648]10:56:07 10:56:07Initialize.Validate.Task:10:56:07 10:56:11 [exec] Feeds used:10:56:11 [exec] https://api.nuget.org/v3/index.json10:56:11 [exec] 10:56:23 [exec] Unable to load the service index for source https://api.nuget.org/v3/index.json.10:56:23 [exec] An error occurred while sending the request.10:56:23 [exec] Unable to connect to the remote server*10:56:23* [exec] No connection could be made because the target machine actively refused it 127.0.0.1:5656*10:56:23* 10:56:23 BUILD FAILED - 0 non-fatal error(s), 4 warning(s)10:56:23 10:56:23 External Program Failed: C:\Builds\workspace\ci-job_master\AutomatedProcedures\tools\.nuget\NuGet.exe (return code was 1)10:56:23 10:56:23 Total time: 20.9 seconds.10:56:23
  3. I wanted to develop and deployed a Hyperledger network locally and also transfer it to Azure Hyperledger-Fabric for single organisation.
  4. How to call REST API using current instance of internet explorer. I am working on extension for fill the form dynamicly and data comes from REST API. but for authontation we have to login on that application e.g. REST API URL: http://dataservice.com/getusers.json Login page: http://dataservice.com/login.aspx and i wanted to fill data on another application Form page url: http://localservice.com/users.aspx and i have already logged in on http://dataservice.com domain and wanted to get data using internet explorer extension and fill form on second application which is available on different domain. so can you suggest me how it can be possible through Internet Explorer extension.
  5. Sir i wanted to develop a extension for internet explorer 9 to fill opened form dynamically using extensition and the data i can configure in extension any time. so please suggest me how i can develop this extension step by step because i am new in explorer development.
  6. thanks for your replay. can you give me a link to develop a extension for fill form dynamically. and which editor i can use to develop. can i use visual studio 2015.
  7. I am going to create a Extension for internet explorer but i am not able to understand how to start creating Extension for internet explorer.
  8. I am going to create a application in this application i want to use authorization server and resource server and client application in different application for hosting in different location. How i can design my application. Firstly, Can i host authorization server and resource server and client application in different location.
  9. I am trying to consume service using proxy class. i am getting below exception. "The underlying connection was closed: An unexpected error occurred on a receive." ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; //proxy class initialization ISessionManager objISessionManager = new SessionManagerClient("https://abcxyz.com/sessionmanager.svc"); LogonRequest objLogonRequest = new LogonRequest(); objLogonRequest.logonRequestData = new LogonRequestData(); objLogonRequest.ContractVersion = APICredential.ContractVersion; objLogonRequest.logonRequestData.DomainCode = APICredential.AgentDomain; objLogonRequest.logonRequestData.AgentName = APICredential.AgentID; objLogonRequest.logonRequestData.Password = APICredential.Password; LogonResponse objLogonResponse = objISessionManager.Logon(objLogonRequest); can you suggest how we can fix it.
  10. Yes! you can remove one or more than one attributes in single a statement by using below statement. $("img").removeAttr( "title" ).removeAttr( "someotherattr" );
  11. I am trying to bind dynamic event but i am not able to bind. previously i have used .live in our system that was working find now we are going to migrate our system to jquery 3.1.1. and i have replace all .live to .on function but work. for you reference.. <html> <head> <script src="jquery-3.1.1.min.js"></script> <!-- <script src="jquery-1.8.1.min.js"></script> --> <script> var abcHandler = function() { var h=this; h.getControl = function(cntrl) { return $("[class$='Cntrl_" + cntrl + "']"); }; h.main = h.getControl('main'); h.divid1 = h.getControl('divid1'); h.divid2 = h.getControl('divid2'); } abcHandler.prototype.BindEvents = function() { var h=this; h.main.append("<a class='Cntrl_divid1' href='#'>View Details1</a><br />"); h.main.append("<a class='Cntrl_divid2' href='#'>View Details2</a>"); h.divid1.click(function () { alert(this.innerHTML); }); h.divid2.click(function () { alert(this.innerHTML); }); }; var handler; $(document).ready(function() { handler = new abcHandler(); handler.BindEvents(); }); </script> </head> <body> <div class="Cntrl_main"> </div> </body> </html> Please suggest me how i can fix this issue. das
  12. I am going to develop optimize web site. The problem with 200-250 AJAX calls for different values on loading. that's why i have selected angularjs-http-batch request to get values. So, Can you suggest me pros and cons of batch request?
  13. I am trying to call a web service asynchronous in .net 4.0. I mean i don't want any kind of response from service side. I just want to execute a web method. can you suggest me how i can call? Service Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace UILAYER.Service { /// <summary> /// Summary description for TestService /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. //[System.Web.Script.Services.ScriptService] public class TestService : System.Web.Services.WebService { int Message = "success||Record has been updated."; [WebMethod] public object ExecuteProcessRawRunches() { try { if (Message.ToLower().StartsWith("success||")) { return new { Result = "OK", Records = Message }; } else { return new { Result = "ERROR", Records = Message }; } } catch (Exception ex) { return new { Result = "ERROR", Message = ex.Message }; } } } }
  14. Can you suggest me. How can i maintain Transaction in sql for a scope? @@TRANCOUNT is used for a connection.
×
×
  • Create New...