View HighlightResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
namespace SC9SolrDemo.Models | |
{ | |
public class HighlightResult | |
{ | |
public string Name { get; set; } |
View Index.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@model IEnumerable<SC9SolrDemo.Models.HighlightResult> | |
@if (Model != null) | |
{ | |
<ul> | |
@foreach (var highlight in Model) | |
{ | |
<li> | |
<h1> | |
@highlight.Name |
View HighlighterController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using SC9SolrDemo.Models; | |
using Sitecore.ContentSearch; | |
using Sitecore.ContentSearch.SearchTypes; | |
using Sitecore.ContentSearch.SolrProvider.SolrNetIntegration; | |
using SolrNet; | |
using SolrNet.Commands.Parameters; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web.Mvc; |
View Index.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using SolrNet; | |
@using Sitecore.ContentSearch.SearchTypes | |
@model SolrQueryResults<SearchResultItem> | |
@if (Model != null) | |
{ | |
foreach (var group in Model.Grouping) | |
{ | |
foreach (var grp in group.Value.Groups) |
View GroupController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Sitecore.ContentSearch; | |
using Sitecore.ContentSearch.SearchTypes; | |
using Sitecore.ContentSearch.SolrProvider.SolrNetIntegration; | |
using SolrNet; | |
using SolrNet.Commands.Parameters; | |
using System.Web.Mvc; | |
namespace SC9SolrDemo.Controllers | |
{ | |
public class GroupController : Controller |
View basic.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using Sitecore.Mvc | |
<!doctype html> | |
<html> | |
<head> | |
<title>Sitecore Demo</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> | |
<div> |
View Sitecore901Install.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define parameters | |
$prefix = "sc901demo" | |
$PSScriptRoot = "D:\9" | |
$XConnectCollectionService = "$prefix.xconnect" | |
$sitecoreSiteName = "$prefix.local" | |
$SolrUrl = "https://localhost:8983/solr" | |
$SolrRoot = "C:\Sitecore9\solr-6.6.2" | |
$SolrService = "solr662" | |
$SqlServer = "(local)" | |
$SqlAdminUser = "sa" |
View HorseRace Problem in C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace HorseRaceProblem | |
{ | |
public class HorseRace | |
{ | |
static void Main(string[] args) |
View FTPFileCopy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.IO; | |
namespace FtpFileCopy | |
{ | |
public class FtpFileUpload | |
{ | |
static void Main(string[] args) | |
{ |
View usingtest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Data; | |
namespace UsingTest | |
{ | |
public class Program | |
{ |
NewerOlder