This file contains hidden or 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
| <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" default-access="property" auto-import="true" default-cascade="none" default-lazy="true"> | |
| <class xmlns="urn:nhibernate-mapping-2.2" name="ValueMapping.Fob, ValueMapping, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" table="`Fob`"> | |
| <id type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
| <column name="id" /> | |
| <generator class="native" /> | |
| </id> | |
| <property name="Something" type="System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
| <column name="Something" /> | |
| </property> | |
| </class> |
This file contains hidden or 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
| void Main() | |
| { | |
| int x = System.Net.IPAddress.HostToNetworkOrder((127 << 24) | 1); | |
| var y = new System.Net.IPAddress(x); | |
| Console.WriteLine(x); | |
| Console.WriteLine(y); | |
| } |
This file contains hidden or 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
| create table Foo (data1 bit, data2 bit, data3 bit, seq int not null) | |
| go | |
| insert into Foo (data1, data2, data3, seq) | |
| values (NULL, 0, 1, 1), (1, NULL, 0, 2), (0, 1, NULL, 3) | |
| go | |
| with unpivoted as ( | |
| select seq, value, col | |
| from (select seq, data1, data2, data3 from Foo) a |
This file contains hidden or 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
| AssemblyInfo, TypeParameters, Base, MemberType, Parameters, ReturnValue | |
| { | |
| display: none; | |
| } | |
| TypeSignature { | |
| display: block; | |
| padding: 1em; | |
| margin: 1em; | |
| content: attr(Value); |
NewerOlder