| bio | website | |
|---|---|---|
| location | Tbilisi, Georgia | |
| age | 23 | |
| visits | member for | 2 years, 2 months |
| seen | 13 hours ago | |
| stats | profile views | 630 |
Convention over configuraiton!
|
Mar 31 |
awarded | Commentator |
|
Mar 31 |
comment |
HtmlHelper.EditorFor from Controller Sorry, you were right about the thing that it's created when BeginForm is executed. Creating FormContext manually is useful when there's the need to load partial view from server via ajax call and you want to insert response into exsiting form that's created on client. In this case, if you don't set FormContext manually, validations wont attach to inputs |
|
Mar 31 |
comment |
HtmlHelper.EditorFor from Controller This is not true. You can manually set the FormContext if you need it if (Html.ViewContext.FormContext == null)
{
Html.ViewContext.FormContext = new FormContext();
} |
|
Mar 30 |
comment |
Reusable Linq to XML methods to filter my query results No matter how much nested selects you've got - it'll work. This's called chaining. First filter is applied when you call setFriends. The filterFriendsByName adds another filter chain and so on. When evaluating of IEnumerable starts, it'll evaluate chains one by one. see Query Expressions |
|
Mar 30 |
answered | Reusable Linq to XML methods to filter my query results |
|
Mar 30 |
comment |
Deserializing multiple JSON result with JavaScriptSerializer you JSON string itself is well formated JSON-string. But it cannot be deserialized into List of Foo objects. If you want to deserialize into List<Foo>, you should use JSON content i adviced |
|
Mar 30 |
revised |
Deserializing multiple JSON result with JavaScriptSerializer added 763 characters in body; added 104 characters in body |
|
Mar 30 |
answered | Deserializing multiple JSON result with JavaScriptSerializer |
|
Mar 30 |
awarded | Editor |
|
Mar 30 |
revised |
Custom Validation Attribute ASP.NET MVC added 1723 characters in body |
|
Mar 30 |
comment |
Custom Validation Attribute ASP.NET MVC What exactly cannot you figure out? |
|
Mar 30 |
comment |
Custom Validation Attribute ASP.NET MVC ok, you could read Phil Haack's post about custom valitaion then |
|
Mar 30 |
comment |
Entity Framework Code-First - Define the key for this EntityType wouldn't that make user_id key? What if user is in many roles? |
|
Mar 30 |
comment |
Custom Validation Attribute ASP.NET MVC have you checked up the video of Brad Wilson that i mentioned? |
|
Mar 30 |
answered | Custom Validation Attribute ASP.NET MVC |
|
Mar 30 |
awarded | Supporter |
|
Mar 30 |
comment |
How do I dynamically create an XML schema in C#? @John Saunders: No i didnt. I think XmlDocument or is better when manipulating with existing xml, as they support navigating and editing too. As from MSDN - "XmlWriter Represents a writer that provides a fast, non-cached, forward-only means of generating streams or files containing XML data.". You're right - LINQ to Xml is simpler to use, but isn't in built on top of XmlWriter? |
|
Mar 29 |
answered | The ObjectContext instance has been disposed and can no longer be used for operations that require a connection |
|
Mar 29 |
answered | Clone with better performance |
|
Mar 29 |
answered | cannot use the current-datetime function in xslt |