Skip to content

Instantly share code, notes, and snippets.

View MoienTajik's full-sized avatar
👾

Moien Tajik MoienTajik

👾
View GitHub Profile
@MoienTajik
MoienTajik / EFWildcardSearch.md
Last active December 13, 2017 11:18
Wildcard Search Helper Entity Framework

Wildcard Search Helper Entity Framework

You can build a LIKE statement with wildcard characters in LINQ to Entities with this Helper.

WildCard

@MoienTajik
MoienTajik / iranian-phone-numbers-regex.md
Last active May 11, 2025 11:51
Regex For Iranian Mobile Phone Numbers

Regex For Iranian Phone Numbers

This regex supports all kinds of Iranian mobile phone numbers :

^(\+98|0)?9\d{9}$


Regex Visualized

@model TinyMCE.Models.Post
<h2>Details</h2>
@Html.Raw(Model.Description)
@model TinyMCE.Models.Post
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
@using (Html.BeginForm())
{
public class PostsController : Controller
{
public ActionResult Create()
{
return View();
}
}
@MoienTajik
MoienTajik / Post.cs
Last active September 18, 2017 09:51
Post class for TinyMCE
public class Post
{
public string Title { get; set; }
[AllowHtml]
[UIHint("tinymce_jquery_full")]
public string Description { get; set; }
}