Posts by Flavio Francisco • 103 points
2 posts
- 
		0 votes1 answer54 viewsA: Customize ASP.NET IdentityAccording to this Answer from Stackoverflow in English Data Annotations has some limitations. All you can do with Data Annotations is possible with Fluent API not the other way around. If you need… 
- 
		0 votes3 answers194 viewsA: Take what’s between the quotesHave you thought about using a regular expression? public static void AddFile(string file) { string pattern = @"([""'])(?:(?=(\\?))\2.)*?\1"; Regex rx = new Regex(pattern, RegexOptions.Compiled |…